Skip to content

Commit

Permalink
Skip jar packaging of test common modules if necessary.
Browse files Browse the repository at this point in the history
  • Loading branch information
turing85 committed Jul 21, 2024
1 parent 8b4d868 commit 4ad25a0
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
7 changes: 7 additions & 0 deletions integration-tests/camel-jms/common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>default-jar</id>
<goals>
<goal>jar</goal>
</goals>
<phase>none</phase>
</execution>
<execution>
<goals>
<goal>test-jar</goal>
Expand Down
8 changes: 8 additions & 0 deletions integration-tests/common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>default-jar</id>
<goals>
<goal>jar</goal>
</goals>
<phase>none</phase>
</execution>
<execution>
<id>test-jar</id>
<goals>
<goal>test-jar</goal>
</goals>
Expand Down

0 comments on commit 4ad25a0

Please sign in to comment.