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

4.x: Ugrade jersey to 3.0.9 #5789

Merged
merged 1 commit into from
Jan 6, 2023
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
4 changes: 2 additions & 2 deletions dependencies/pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--

Copyright (c) 2019, 2022 Oracle and/or its affiliates.
Copyright (c) 2019, 2023 Oracle and/or its affiliates.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -91,7 +91,7 @@
<!-- Force upgrade version used by maven-jaxb2-plugin. Needed to support Java 16 -->
<version.lib.jaxb-runtime>3.0.2</version.lib.jaxb-runtime>
<version.lib.jedis>3.6.3</version.lib.jedis>
<version.lib.jersey>3.0.5</version.lib.jersey>
<version.lib.jersey>3.0.9</version.lib.jersey>
<version.lib.jgit>5.11.1.202105131744-r</version.lib.jgit>
<version.lib.junit>5.7.0</version.lib.junit>
<version.lib.kafka>2.8.1</version.lib.kafka>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2022 Oracle and/or its affiliates.
* Copyright (c) 2022, 2023 Oracle and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -119,6 +119,11 @@ public void shutdown() {
forApplication.shutdown();
}

@Override
public boolean isShutdown() {
return shared.isShutdown() && forApplication.isShutdown();
}

/**
* Registers classes returned by {@code getClasses} in {@code forApplication} and
* all other classes in {@code shared}. This is done to keep separation between
Expand Down Expand Up @@ -366,6 +371,11 @@ public void shutdown() {
throw new UnsupportedOperationException("Not supported");
}

@Override
public boolean isShutdown() {
throw new UnsupportedOperationException("Not supported");
}

@Override
public void register(Binding binding) {
throw new UnsupportedOperationException("Not supported");
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021, 2022 Oracle and/or its affiliates.
* Copyright (c) 2021, 2023 Oracle and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -114,6 +114,11 @@ public void shutdown() {
forApplication.shutdown();
}

@Override
public boolean isShutdown() {
return shared.isShutdown() && forApplication.isShutdown();
}

/**
* Registers classes returned by {@code getClasses} in {@code forApplication} and
* all other classes in {@code shared}. This is done to keep separation between
Expand Down Expand Up @@ -352,6 +357,11 @@ public void shutdown() {
throw new UnsupportedOperationException("Not supported");
}

@Override
public boolean isShutdown() {
throw new UnsupportedOperationException("Not supported");
}

@Override
public void register(Binding binding) {
throw new UnsupportedOperationException("Not supported");
Expand Down