Skip to content

Commit

Permalink
Include the code-coverage module during release to keep module versio…
Browse files Browse the repository at this point in the history
…ns synchronized.

For that matter never publish this module via Maven during deploy.
  • Loading branch information
rhusar committed Mar 22, 2024
1 parent 2c5ccf0 commit 347ec21
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions code-coverage/pom.xml
Expand Up @@ -57,6 +57,13 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>

Expand Down
7 changes: 7 additions & 0 deletions pom.xml
Expand Up @@ -90,6 +90,13 @@
</plugins>
</build>
</profile>
<!-- Include the code-coverage module during release to keep module versions synchronized -->
<profile>
<id>jboss-release</id>
<modules>
<module>code-coverage</module>
</modules>
</profile>
</profiles>

<dependencyManagement>
Expand Down

0 comments on commit 347ec21

Please sign in to comment.