Skip to content

Commit

Permalink
Remove the unneeded bom module from the integration-test profile. Add…
Browse files Browse the repository at this point in the history
… the integration-test module to the release profile.

Signed-off-by: James R. Perkins <jperkins@redhat.com>
  • Loading branch information
jamezp committed Jul 9, 2024
1 parent 78df966 commit b95d09d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
7 changes: 3 additions & 4 deletions integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,11 @@

<properties>
<maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
<maven.test.skip>false</maven.test.skip>
<skipTests>${maven.test.skip}</skipTests>
<skipItTests>false</skipItTests>
<skipTests>${skipItTests}</skipTests>

<!-- Dependency versions -->
<version.jakarta.ee>10.0.0</version.jakarta.ee>
<version.org.jboss.arquillian>${project.version}</version.org.jboss.arquillian>
<version.org.jboss.arquillian.jakarta>1.8.1.Final</version.org.jboss.arquillian.jakarta>

</properties>
Expand All @@ -67,7 +66,7 @@
<dependency>
<groupId>org.jboss.arquillian</groupId>
<artifactId>arquillian-bom</artifactId>
<version>${version.org.jboss.arquillian}</version>
<version>${project.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
Expand Down
6 changes: 4 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -149,13 +149,14 @@
<profile>
<id>integration-tests</id>
<modules>
<!-- Attempt to ensure the BOM is always built last on Windows -->
<module>bom</module>
<module>integration-tests</module>
</modules>
</profile>
<profile>
<id>release</id>
<modules>
<module>integration-tests</module>
</modules>
<build>
<plugins>
<plugin>
Expand All @@ -167,6 +168,7 @@
<localCheckout>true</localCheckout>
<preparationGoals>clean install</preparationGoals>
<releaseProfiles>gpg-sign,jboss-release</releaseProfiles>
<arguments>-DskipItTests=true</arguments>
<tagNameFormat>@{project.version}</tagNameFormat>
</configuration>
</plugin>
Expand Down

0 comments on commit b95d09d

Please sign in to comment.