Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to WildFly 34.0.0.Final, GettingStarted requires commons-logging #113

Merged
merged 3 commits into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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