Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FISH-5723 FISH-6285 FISH-6435: update jersey version to fix proxy context field issues #5912

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions appserver/tests/payara-samples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -524,6 +524,12 @@
<artifactId>payara-client-ee8</artifactId>
<scope>test</scope>
<optional>true</optional>
<exclusions>
<exclusion>
<groupId>org.glassfish.jersey.ext.cdi</groupId>
<artifactId>jersey-cdi1x</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- needed for maven-war-plugin to work properly -->
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,12 @@
<groupId>org.glassfish.jersey.ext.microprofile</groupId>
<artifactId>jersey-mp-rest-client</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.glassfish.jersey.ext.cdi</groupId>
<artifactId>jersey-cdi1x</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
<servlet-api.version>4.0.2</servlet-api.version>
<grizzly.version>2.4.4.payara-p8</grizzly.version>
<jax-rs-api.impl.version>2.1.6</jax-rs-api.impl.version>
<jersey.version>2.34.payara-p2</jersey.version>
<jersey.version>2.36.payara-p1</jersey.version>
<jakarta.validation.version>2.0.2</jakarta.validation.version>
<hibernate.validator.version>6.1.5.Final</hibernate.validator.version>
<hibernate.validator-cdi.version>6.1.5.Final</hibernate.validator-cdi.version>
Expand Down