Skip to content

Commit 93884cf

Browse files
springbootdemo: fix httpcore5 version mismatch, fix rsync comment
- httpcore5: 5.3.3 → 5.4.1 in both poms (must match httpcore5-h2 and httpclient5 minor version; mixing 5.3.x core with 5.4.x client/h2 can cause runtime ClassNotFoundException) - wildfly pom XML comment: replace rsync command with README reference; the '--delete' flag is XML-illegal inside <!-- --> (double-dash), and the workaround of '-delete' is incorrect rsync syntax Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 9f46a2c commit 93884cf

File tree

2 files changed

+3
-4
lines changed
  • modules/samples/userguide/src/userguide

2 files changed

+3
-4
lines changed

modules/samples/userguide/src/userguide/springbootdemo-tomcat11/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@
300300
<dependency>
301301
<groupId>org.apache.httpcomponents.core5</groupId>
302302
<artifactId>httpcore5</artifactId>
303-
<version>5.3.3</version>
303+
<version>5.4.1</version>
304304
</dependency>
305305
<dependency>
306306
<groupId>org.apache.httpcomponents.client5</groupId>

modules/samples/userguide/src/userguide/springbootdemo-wildfly/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@
3030
src/main/webapp/WEB-INF/jboss-web.xml
3131
3232
Build: mvn package -DskipTests
33-
Deploy: rsync -a -delete target/deploy/axis2-json-api/ ~/wildfly/standalone/deployments/axis2-json-api.war/
34-
touch ~/wildfly/standalone/deployments/axis2-json-api.war.dodeploy
33+
Deploy: see README.md (rsync + touch .dodeploy)
3534
JDK: Compiled at Java 21 source level; tested on OpenJDK 21 and OpenJDK 25.
3635
-->
3736
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
@@ -311,7 +310,7 @@
311310
<dependency>
312311
<groupId>org.apache.httpcomponents.core5</groupId>
313312
<artifactId>httpcore5</artifactId>
314-
<version>5.3.3</version>
313+
<version>5.4.1</version>
315314
</dependency>
316315
<dependency>
317316
<groupId>org.apache.httpcomponents.client5</groupId>

0 commit comments

Comments
 (0)