Skip to content

Commit

Permalink
Removed Helidon connector from test classpath.
Browse files Browse the repository at this point in the history
Signed-off-by: Santiago Pericasgeertsen <santiago.pericasgeertsen@oracle.com>
  • Loading branch information
spericas committed Jun 26, 2023
1 parent 7d41b51 commit f893419
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/integration/oidc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,11 @@
<artifactId>jsoup</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<!-- dependency>
<groupId>io.helidon.jersey</groupId>
<artifactId>helidon-jersey-connector</artifactId>
<scope>test</scope>
</dependency>
</dependency -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

package io.helidon.tests.integration.oidc;

import io.helidon.jersey.connector.HelidonConnectorProvider;
import io.helidon.microprofile.tests.junit5.AddBean;
import io.helidon.microprofile.tests.junit5.HelidonTest;

Expand All @@ -42,7 +41,7 @@ class CommonLoginBase {
.withReuse(true);

private static final ClientConfig CONFIG = new ClientConfig()
.connectorProvider(new HelidonConnectorProvider())
// .connectorProvider(new HelidonConnectorProvider())
.property(ClientProperties.CONNECT_TIMEOUT, 10000000)
.property(ClientProperties.READ_TIMEOUT, 10000000)
.property(ClientProperties.FOLLOW_REDIRECTS, true);
Expand Down

0 comments on commit f893419

Please sign in to comment.