Skip to content

Commit

Permalink
Merge pull request #113 from WolfgangHG/wildfly34
Browse files Browse the repository at this point in the history
Update to WildFly 34.0.0.Final, GettingStarted requires commons-logging
  • Loading branch information
jmesnil authored Oct 21, 2024
2 parents 05df57b + f80dd19 commit 0b79f91
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
actually use these dependencies.
-->
<properties>
<version.wildfly.bom>33.0.2.Final</version.wildfly.bom>
<version.wildfly.bom>34.0.0.Final</version.wildfly.bom>
<version.wildfly.core>26.0.1.Final</version.wildfly.core>
<version.wildfly.maven.plugin>5.0.1.Final</version.wildfly.maven.plugin>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,16 @@
<artifactId>resteasy-client</artifactId>
<scope>test</scope>
</dependency>

<!--See https://issues.redhat.com/browse/WFLY-19779 and https://github.com/wildfly/quickstart/pull/957/
httpclient needs commons-logging yet the server uses this instead,
to be fully compatible on apps we need to add this dependency whenever commons-logging is needed,
but on testing clients like this we could use commons-logging instead -->
<dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>commons-logging-jboss-logging</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit 0b79f91

Please sign in to comment.