Skip to content

Commit

Permalink
Fix the integration test build issue and ensure the versions get upda…
Browse files Browse the repository at this point in the history
…ted (#594)

* Update the integration-test POM's to 1.9.1.Final-SNAPSHOT.

Signed-off-by: James R. Perkins <jperkins@redhat.com>

* Remove the unneeded bom module from the integration-test profile. Add the integration-test module to the release profile.

Signed-off-by: James R. Perkins <jperkins@redhat.com>

---------

Signed-off-by: James R. Perkins <jperkins@redhat.com>
  • Loading branch information
jamezp authored Jul 10, 2024
1 parent fd5e7e0 commit 1f67b54
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion integration-tests/common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>org.jboss.arquillian</groupId>
<artifactId>integration-tests</artifactId>
<version>1.9.0.Final-SNAPSHOT</version>
<version>1.9.1.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion integration-tests/junit4-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>org.jboss.arquillian</groupId>
<artifactId>integration-tests</artifactId>
<version>1.9.0.Final-SNAPSHOT</version>
<version>1.9.1.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion integration-tests/junit5-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>org.jboss.arquillian</groupId>
<artifactId>integration-tests</artifactId>
<version>1.9.0.Final-SNAPSHOT</version>
<version>1.9.1.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
9 changes: 4 additions & 5 deletions integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

<groupId>org.jboss.arquillian</groupId>
<artifactId>integration-tests</artifactId>
<version>1.9.0.Final-SNAPSHOT</version>
<version>1.9.1.Final-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Arquillian Core: Implementation Integration Tests</name>
<description>Tests for implementations of Arquillian Core</description>
Expand All @@ -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
2 changes: 1 addition & 1 deletion integration-tests/testng-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>org.jboss.arquillian</groupId>
<artifactId>integration-tests</artifactId>
<version>1.9.0.Final-SNAPSHOT</version>
<version>1.9.1.Final-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

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 1f67b54

Please sign in to comment.