Skip to content

Commit

Permalink
Jersey 3.1.0
Browse files Browse the repository at this point in the history
Weld 5.1.0
slf4j 2.0.4
  • Loading branch information
nhenneaux committed Nov 29, 2022
1 parent b337324 commit 200c8b4
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
java: [ 11, 17, 18 ]
java: [ 11, 17, 19 ]
experimental: [ false ]
include:
- java: 19-ea
- java: 20-ea
os: ubuntu-latest
experimental: true
- java: 19-ea
- java: 20-ea
os: macos-latest
experimental: true
- java: 19-ea
- java: 20-ea
os: windows-latest
experimental: true
name: Build with Java ${{ matrix.java }} on ${{ matrix.os }}
Expand Down
24 changes: 18 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@
<sonar.organization>nhenneaux</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>

<jersey.version>3.0.8</jersey.version>
<jersey.version>3.1.0</jersey.version>
<jetty.version>11.0.12</jetty.version>
<jakarta.xml.version>4.0.1</jakarta.xml.version>
<weld-se-core.version>4.0.3.Final</weld-se-core.version>
<jersey-httpclient-connector.version>1.1.5</jersey-httpclient-connector.version>
<weld-se-core.version>5.1.0.Final</weld-se-core.version>
<jersey-httpclient-connector.version>1.1.7</jersey-httpclient-connector.version>
</properties>


Expand Down Expand Up @@ -76,17 +76,29 @@
<groupId>org.glassfish.jersey.inject</groupId>
<artifactId>jersey-cdi2-se</artifactId>
<version>${jersey.version}</version>
<exclusions>
<exclusion>
<groupId>org.jboss.weld.*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jboss.weld.se</groupId>
<artifactId>weld-se-core</artifactId>
<version>${weld-se-core.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.weld.servlet</groupId>
<artifactId>weld-servlet-core</artifactId>
<version>${weld-se-core.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.2</version>
<version>2.0.4</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
Expand All @@ -109,7 +121,7 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.9.0</version>
<version>5.9.1</version>
<scope>test</scope>
</dependency>

Expand All @@ -122,7 +134,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>4.8.0</version>
<version>4.9.0</version>
<scope>test</scope>
</dependency>

Expand Down

0 comments on commit 200c8b4

Please sign in to comment.