Skip to content

Commit

Permalink
Build with Java 22-23ea
Browse files Browse the repository at this point in the history
Jetty 12 and libraries update
  • Loading branch information
nhenneaux committed Mar 29, 2024
1 parent e3ffa91 commit 2d00cd3
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 23 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
java: [ 11, 17, 21]
java: [ 11, 17, 21, 22]
experimental: [ false ]
include:
- java: 22-ea
- java: 23-ea
os: ubuntu-latest
experimental: true
- java: 22-ea
- java: 23-ea
os: macos-latest
experimental: true
- java: 22-ea
- java: 23-ea
os: windows-latest
experimental: true
name: Build with Java ${{ matrix.java }} on ${{ matrix.os }}
Expand Down
30 changes: 11 additions & 19 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
<sonar.host.url>https://sonarcloud.io</sonar.host.url>

<jersey.version>3.1.3</jersey.version>
<jetty.version>11.0.19</jetty.version>
<jetty.version>12.0.7</jetty.version>
<weld-se-core.version>5.1.2.Final</weld-se-core.version>
<log4j.version>2.22.1</log4j.version>
<log4j.version>2.23.1</log4j.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -72,27 +72,19 @@

<dependency>
<groupId>org.eclipse.jetty.http2</groupId>
<artifactId>http2-server</artifactId>
<artifactId>jetty-http2-server</artifactId>
<version>${jetty.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-alpn-server</artifactId>
<version>${jetty.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-alpn-java-server</artifactId>
<version>${jetty.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
<groupId>org.eclipse.jetty.ee10</groupId>
<artifactId>jetty-ee10-servlet</artifactId>
<version>${jetty.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
Expand All @@ -111,7 +103,7 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.11</version>
<version>2.0.12</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -136,19 +128,19 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.10.1</version>
<version>5.10.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.awaitility</groupId>
<artifactId>awaitility</artifactId>
<version>4.2.0</version>
<version>4.2.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>5.8.0</version>
<version>5.11.0</version>
<scope>test</scope>
</dependency>

Expand All @@ -166,7 +158,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.10</version>
<version>0.8.11</version>
<executions>
<execution>
<id>prepare-agent</id>
Expand Down

0 comments on commit 2d00cd3

Please sign in to comment.