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

Update to latest jdk17 base image #2322

Draft
wants to merge 2 commits into
base: develop
Choose a base branch
from
Draft
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 .circleci/config.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .circleci/template.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env bash
export CIRCLECI_TEMPLATE=java-library-oss
export JDK=11
export JDK=17
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public final class VerificationServerExtension implements BeforeAllCallback, Aft
static final UserAgent userAgent = UserAgent.of(UserAgent.Agent.of("test", "develop"));
private static final ClientConfiguration clientConfiguration = ClientConfiguration.builder()
.from(ClientConfigurations.of(
ImmutableList.of("http://localhost:" + PORT + "/"),
ImmutableList.of("http://127.0.0.1:" + PORT + "/"),
SslSocketFactories.createSslSocketFactory(TRUST_STORE_CONFIGURATION),
SslSocketFactories.createX509TrustManager(TRUST_STORE_CONFIGURATION)))
.userAgent(userAgent)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public final class VerificationClientExtension implements BeforeAllCallback, Aft
.build();
private static final int PORT = 16297;
private static final ClientConfiguration clientConfiguration = ClientConfigurations.of(
ImmutableList.of("http://localhost:" + PORT + "/"),
ImmutableList.of("http://127.0.0.1:" + PORT + "/"),
SslSocketFactories.createSslSocketFactory(TRUST_STORE_CONFIGURATION),
SslSocketFactories.createX509TrustManager(TRUST_STORE_CONFIGURATION));

Expand Down