Skip to content

Commit

Permalink
[Flyway]: Fix pom.xml file
Browse files Browse the repository at this point in the history
  • Loading branch information
KirillKurdyukov committed Apr 10, 2024
1 parent 1bfbf17 commit da14c79
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions flyway-dialect/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,48 @@
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.5.0</version>
<configuration>
<source>1.8</source>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<environmentVariables>
<TESTCONTAINERS_REUSE_ENABLE>true</TESTCONTAINERS_REUSE_ENABLE>
</environmentVariables>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit da14c79

Please sign in to comment.