Skip to content

Commit

Permalink
Change the version to 9.4
Browse files Browse the repository at this point in the history
Jetty 9.x is the last version that does not use SLF4J natively: cf.
[Jetty 9 documentation](https://www.eclipse.org/jetty/documentation/jetty-9/index.html#configuring-logging)
vs
[Jetty 10
documentation](https://www.eclipse.org/jetty/documentation/jetty-10/operations-guide/index.html#og-logging)

Given the EOL announcement jetty/jetty.project#7958, this is the last
upgrade we need to perform.
  • Loading branch information
ppkarwasz authored and dependabot[bot] committed May 28, 2022
1 parent decd2cf commit 6d50df8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
3 changes: 0 additions & 3 deletions log4j-appserver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
<docLabel>Web Documentation</docLabel>
<projectDir>/log4j-appserver</projectDir>
<tomcat-juli.version>10.0.21</tomcat-juli.version>
<jetty.version>11.0.9</jetty.version> <!-- Jetty 9 requires Java 8 -->
<module.name>org.apache.logging.log4j.appserver</module.name>
<maven.doap.skip>true</maven.doap.skip>
</properties>
Expand All @@ -54,8 +53,6 @@
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-util</artifactId>
<version>${jetty.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>

Expand Down
8 changes: 8 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,8 @@
<argLine>-Xms256m -Xmx1024m</argLine>
<javaTargetVersion>1.8</javaTargetVersion>
<module.name />
<!-- Dependency versions -->
<jetty.version>9.4.46.v20220331</jetty.version>
</properties>
<pluginRepositories>
<pluginRepository>
Expand Down Expand Up @@ -1074,6 +1076,12 @@
<version>31.1-jre</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-util</artifactId>
<version>${jetty.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
Expand Down

0 comments on commit 6d50df8

Please sign in to comment.