Skip to content

Commit

Permalink
Upgrade to WildFly 30.0.0.Final
Browse files Browse the repository at this point in the history
  • Loading branch information
jfdenise committed Oct 30, 2023
1 parent 49be6bb commit b7fb902
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 28 deletions.
40 changes: 12 additions & 28 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@
</licenses>

<properties>
<!-- Target WildFly version, and other parts needed for the Galleon maven plugin -->
<version.org.wildfly>29.0.0.Final-SNAPSHOT</version.org.wildfly>
<version.org.wildfly.core>21.1.0.Beta2</version.org.wildfly.core>
<!-- Target WildFly version, and other parts needed for the Galleon maven plugin -->
<version.org.wildfly>30.0.0.Final</version.org.wildfly>
<version.org.wildfly.core>22.0.1.Final</version.org.wildfly.core>
<version.org.wildfly.common>1.6.0.Final</version.org.wildfly.common>
<version.org.jboss.galleon>5.2.0.Final</version.org.jboss.galleon>
<version.org.jboss.galleon>5.2.2.Final</version.org.jboss.galleon>

<!-- Other WildFly feature pack that we depend on -->
<version.org.wildfly.reactive-feature-pack>3.0.0.Final</version.org.wildfly.reactive-feature-pack>
Expand Down Expand Up @@ -77,10 +77,8 @@
<version.tyrus>1.1</version.tyrus>
<version.junit>4.13.1</version.junit>
<version.rest-assured>5.3.0</version.rest-assured>
<version.arquillian>5.0.0.Alpha6</version.arquillian>
<version.arquillian-junit>1.7.0.Alpha12</version.arquillian-junit>
<version.wildfly.glow>1.0.0.Alpha1</version.wildfly.glow>
<version.org.testng>7.4.0</version.org.testng>
<version.wildfly.glow>1.0.0.Alpha7</version.wildfly.glow>

<!-- Plugin versions and their dependency versions -->
<version.org.wildfly.checkstyle-config>1.0.8.Final</version.org.wildfly.checkstyle-config>
Expand Down Expand Up @@ -409,6 +407,13 @@
<version>${version.org.wildfly}</version>
<type>zip</type>
</dependency>
<dependency>
<groupId>org.wildfly</groupId>
<artifactId>wildfly-standard-test-expansion-bom</artifactId>
<version>${version.org.wildfly}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.wildfly</groupId>
<artifactId>wildfly-standard-expansion-bom</artifactId>
Expand Down Expand Up @@ -492,20 +497,6 @@
</dependency>

<!-- Stuff used for testing only -->
<dependency>
<!-- Not sure why the wildfly and wildfly-core upgrades made this necessary -->
<groupId>org.wildfly.arquillian</groupId>
<artifactId>wildfly-arquillian-container-managed</artifactId>
<scope>test</scope>
<version>${version.arquillian}</version>
</dependency>
<dependency>
<!-- Not sure why the wildfly and wildfly-core upgrades made this necessary -->
<groupId>org.wildfly.arquillian</groupId>
<artifactId>wildfly-arquillian-protocol-jmx</artifactId>
<scope>test</scope>
<version>${version.arquillian}</version>
</dependency>
<dependency>
<groupId>org.jboss.arquillian.junit</groupId>
<artifactId>arquillian-junit-container</artifactId>
Expand Down Expand Up @@ -583,13 +574,6 @@
<artifactId>rest-assured</artifactId>
<version>${version.rest-assured}</version>
</dependency>
<!-- Not sure why the wildfly and wildfly-core upgrades made this necessary -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${version.org.testng}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
Expand Down
5 changes: 5 additions & 0 deletions testsuite/client-vertx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,11 @@
<artifactId>wildfly-arquillian-protocol-jmx</artifactId>
<scope>test</scope>
</dependency>
<!-- required when upgrading to WildFly 30 -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
</dependency>
</dependencies>

<build>
Expand Down
5 changes: 5 additions & 0 deletions testsuite/integration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,11 @@
<groupId>io.vertx</groupId>
<artifactId>vertx-uri-template</artifactId>
</dependency>
<!-- required when upgrading to WildFly 30 -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit b7fb902

Please sign in to comment.