Skip to content

Commit 99683df

Browse files
committed
Upgrade to Logback 1.1.10
In Logback 1.1.10, the logback-classic module contains a META-INF/services/javax.servlet.ServletContainerInitializer file that contains a comment. This triggers a bug in Wildfly 8 [1] that has been fixed [2] in Wildfly 9 and later. As a result, this commit also updates our Wildfly deployment test to use 9.0.2 rather than 8.2.0. Closes gh-8354 [1] https://issues.jboss.org/browse/WFLY-4089 [2] wildfly/wildfly@fef57eb
1 parent 6af4b10 commit 99683df

File tree

3 files changed

+4
-4
lines changed
  • spring-boot-dependencies
  • spring-boot-deployment-tests/spring-boot-deployment-test-wildfly
  • spring-boot-parent

3 files changed

+4
-4
lines changed

spring-boot-dependencies/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@
124124
<junit.version>4.12</junit.version>
125125
<liquibase.version>3.5.3</liquibase.version>
126126
<log4j2.version>2.6.2</log4j2.version>
127-
<logback.version>1.1.9</logback.version>
127+
<logback.version>1.1.10</logback.version>
128128
<lombok.version>1.16.14</lombok.version>
129129
<mariadb.version>1.4.6</mariadb.version>
130130
<mockito.version>1.10.19</mockito.version>

spring-boot-deployment-tests/spring-boot-deployment-test-wildfly/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
</organization>
1818
<properties>
1919
<main.basedir>${basedir}/../..</main.basedir>
20-
<wildfly.version>8.2.0.Final</wildfly.version>
21-
<cargo.container.id>wildfly8x</cargo.container.id>
20+
<wildfly.version>9.0.2.Final</wildfly.version>
21+
<cargo.container.id>wildfly9x</cargo.container.id>
2222
<cargo.container.url>http://download.jboss.org/wildfly/${wildfly.version}/wildfly-${wildfly.version}.zip
2323
</cargo.container.url>
2424
</properties>

spring-boot-parent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@
329329
<plugin>
330330
<groupId>org.codehaus.cargo</groupId>
331331
<artifactId>cargo-maven2-plugin</artifactId>
332-
<version>1.4.15</version>
332+
<version>1.6.2</version>
333333
</plugin>
334334
<plugin>
335335
<groupId>org.codehaus.gmavenplus</groupId>

0 commit comments

Comments
 (0)