Skip to content

Commit b173e82

Browse files
authored
Merge pull request #30 from avaje/feature/fix-client-dependency
[oauth2-core] Fix http client dependency (from avaje to plain java client)
2 parents 905531e + 28e4e06 commit b173e82

File tree

4 files changed

+6
-12
lines changed

4 files changed

+6
-12
lines changed

avaje-oauth2-core/pom.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,5 @@
1717
<artifactId>avaje-json-core</artifactId>
1818
<version>3.8</version>
1919
</dependency>
20-
<dependency>
21-
<groupId>io.avaje</groupId>
22-
<artifactId>avaje-http-client</artifactId>
23-
<version>3.5</version>
24-
</dependency>
2520
</dependencies>
2621
</project>

avaje-oauth2-core/src/main/java/module-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
exports io.avaje.oauth2.core.jwt;
55

66
requires transitive io.avaje.json;
7-
requires transitive io.avaje.http.client;
7+
requires transitive java.net.http;
88
}

avaje-oauth2-helidon-jwtfilter/pom.xml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,6 @@
1111

1212
<artifactId>avaje-oauth2-helidon-jwtfilter</artifactId>
1313

14-
<properties>
15-
<maven.compiler.source>23</maven.compiler.source>
16-
<maven.compiler.target>23</maven.compiler.target>
17-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18-
</properties>
19-
2014
<dependencies>
2115
<dependency>
2216
<groupId>io.avaje</groupId>

avaje-oauth2-oidc-cognito/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,10 @@
1717
<artifactId>avaje-oauth2-core</artifactId>
1818
<version>0.1</version>
1919
</dependency>
20+
<dependency>
21+
<groupId>io.avaje</groupId>
22+
<artifactId>avaje-http-client</artifactId>
23+
<version>3.5</version>
24+
</dependency>
2025
</dependencies>
2126
</project>

0 commit comments

Comments
 (0)