Skip to content

Commit

Permalink
Add guava dependency
Browse files Browse the repository at this point in the history
Preparation to use caching-functionality from "com.google.common.cache"
  • Loading branch information
DaScheid committed Jun 11, 2024
1 parent ee7f1c7 commit 6a992ce
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions jaxws-ri/boms/bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
<activation-api.version>2.1.3</activation-api.version>
<angus-activation.version>2.0.2</angus-activation.version>
<jakarta.annotation-api.version>2.1.1</jakarta.annotation-api.version>
<guava.version>33.2.0-jre</guava.version>
</properties>

<dependencyManagement>
Expand Down
6 changes: 6 additions & 0 deletions jaxws-ri/bundles/jaxws-rt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,12 @@
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
</dependencies>

<properties>
Expand Down
1 change: 1 addition & 0 deletions jaxws-ri/bundles/jaxws-rt/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
requires transitive com.sun.xml.streambuffer;
requires transitive gmbal;
requires transitive org.glassfish.ha.api;
requires com.google.common;

exports com.sun.xml.ws.policy;
exports com.sun.xml.ws.policy.sourcemodel;
Expand Down
6 changes: 6 additions & 0 deletions jaxws-ri/runtime/rt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,12 @@
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
</dependencies>

<build>
Expand Down
1 change: 1 addition & 0 deletions jaxws-ri/runtime/rt/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
requires transitive com.sun.xml.ws.policy;
requires transitive gmbal;
requires transitive org.glassfish.ha.api;
requires com.google.common;

exports com.oracle.webservices.api;
exports com.oracle.webservices.api.databinding;
Expand Down

0 comments on commit 6a992ce

Please sign in to comment.