Skip to content

Commit

Permalink
Ensure Bootique-provided version of JCache is used #112
Browse files Browse the repository at this point in the history
  • Loading branch information
andrus committed May 5, 2024
1 parent 707337c commit db6d5db
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.0-M5

* #112 Ensure Bootique-provided version of JCache is used

## 3.0-M3

* #110 Deprecate Cayenne 4.1 integration modules
Expand Down
6 changes: 6 additions & 0 deletions bootique-cayenne41-jcache/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@
<groupId>org.apache.cayenne</groupId>
<artifactId>cayenne-jcache</artifactId>
<version>${cayenne41.version}</version>
<exclusions>
<exclusion>
<groupId>javax.cache</groupId>
<artifactId>cache-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.cayenne</groupId>
Expand Down
6 changes: 6 additions & 0 deletions bootique-cayenne42-jcache/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,12 @@
<dependency>
<groupId>org.apache.cayenne</groupId>
<artifactId>cayenne-jcache</artifactId>
<exclusions>
<exclusion>
<groupId>javax.cache</groupId>
<artifactId>cache-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.bootique.jcache</groupId>
Expand Down

0 comments on commit db6d5db

Please sign in to comment.