Skip to content

Commit

Permalink
Merge pull request #202 from RWS/fixing-ehcache-version
Browse files Browse the repository at this point in the history
Fixing ehcache version
  • Loading branch information
dxasupport authored Feb 8, 2024
2 parents e9af9fe + 43d4c79 commit 9663bce
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 14 deletions.
1 change: 1 addition & 0 deletions dxa-framework/dxa-common-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@
<dependency>
<groupId>org.ehcache</groupId>
<artifactId>ehcache</artifactId>
<classifier>jakarta</classifier>
</dependency>

<!-- Joda Time -->
Expand Down
1 change: 1 addition & 0 deletions dxa-framework/dxa-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
<dependency>
<groupId>org.ehcache</groupId>
<artifactId>ehcache</artifactId>
<classifier>jakarta</classifier>
</dependency>
<dependency>
<groupId>jakarta.annotation</groupId>
Expand Down
1 change: 1 addition & 0 deletions dxa-framework/dxa-tridion-provider/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@
<dependency>
<groupId>org.ehcache</groupId>
<artifactId>ehcache</artifactId>
<classifier>jakarta</classifier>
</dependency>

<dependency>
Expand Down
37 changes: 23 additions & 14 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.sdl.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>1.0.3</version>
<version>1.0.4</version>
</parent>

<groupId>com.sdl.dxa</groupId>
Expand Down Expand Up @@ -83,7 +83,7 @@
<jaxen.version>2.0.0</jaxen.version>
<jdom2.version>2.0.6.1</jdom2.version>

<ehcache.version>3.7.1</ehcache.version>
<ehcache.version>3.10.8</ehcache.version>
<cache-api.version>1.1.1</cache-api.version>

<commons-codec.version>1.16.0</commons-codec.version>
Expand All @@ -94,8 +94,9 @@
<jakarta.xml.ws-api.version>4.0.1</jakarta.xml.ws-api.version>
<jakarta.xml.bind-api.version>4.0.1</jakarta.xml.bind-api.version>
<jakarta.activation.version>2.1.2</jakarta.activation.version>
<jaxb.core.version>4.0.4</jaxb.core.version>
<jaxb.version>4.0.4</jaxb.version>
<jaxb-api.version>2.3.1</jaxb-api.version>
<istack-commons-runtime.version>4.2.0</istack-commons-runtime.version>
<fastInfoset-version>2.1.1</fastInfoset-version>

<!-- DD4T dependencies -->
<!-- These are not really used in the framework and are needed only for Model Service adapter -->
Expand Down Expand Up @@ -675,7 +676,25 @@
<groupId>org.ehcache</groupId>
<artifactId>ehcache</artifactId>
<version>${ehcache.version}</version>
<classifier>jakarta</classifier>
</dependency>
<!-- These are required due to ehcache -->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>${jaxb-api.version}</version>
</dependency>
<dependency>
<groupId>com.sun.istack</groupId>
<artifactId>istack-commons-runtime</artifactId>
<version>${istack-commons-runtime.version}</version>
</dependency>
<dependency>
<groupId>com.sun.xml.fastinfoset</groupId>
<artifactId>FastInfoset</artifactId>
<version>${fastInfoset-version}</version>
</dependency>
<!-- End of additional dependencies required for ehcache -->
<dependency>
<groupId>javax.cache</groupId>
<artifactId>cache-api</artifactId>
Expand Down Expand Up @@ -848,16 +867,6 @@
<artifactId>jakarta.xml.bind-api</artifactId>
<version>${jakarta.xml.bind-api.version}</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
<version>${jaxb.core.version}</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>${jaxb.version}</version>
</dependency>

<dependency>
<groupId>org.yaml</groupId>
Expand Down

0 comments on commit 9663bce

Please sign in to comment.