Skip to content

Commit

Permalink
Create test jar for integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JayGreeeen committed Oct 16, 2024
1 parent eabe909 commit cc1632d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions beekeeper-integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -134,4 +134,24 @@
<artifactId>flyway-mysql</artifactId>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
<configuration>
<finalName>${project.artifactId}-${project.version}</finalName>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit cc1632d

Please sign in to comment.