Skip to content

Commit

Permalink
Replace cache2k "bom" dependency with api & core
Browse files Browse the repository at this point in the history
This is an attempt to fix build on Travis.
  • Loading branch information
mederly committed May 17, 2019
1 parent 00670da commit 3fb225c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
7 changes: 6 additions & 1 deletion build-system/pom.xml
Expand Up @@ -840,7 +840,12 @@
</dependency>
<dependency>
<groupId>org.cache2k</groupId>
<artifactId>cache2k-base-bom</artifactId>
<artifactId>cache2k-api</artifactId>
<version>${cache2k.version}</version>
</dependency>
<dependency>
<groupId>org.cache2k</groupId>
<artifactId>cache2k-core</artifactId>
<version>${cache2k.version}</version>
</dependency>
<dependency> <!-- Needed for MethodInvocation object in security-impl, used by Spring Security -->
Expand Down
6 changes: 5 additions & 1 deletion repo/repo-cache/pom.xml
Expand Up @@ -76,7 +76,11 @@
</dependency>
<dependency>
<groupId>org.cache2k</groupId>
<artifactId>cache2k-base-bom</artifactId>
<artifactId>cache2k-api</artifactId>
</dependency>
<dependency>
<groupId>org.cache2k</groupId>
<artifactId>cache2k-core</artifactId>
</dependency>

<!-- Spring dependencies -->
Expand Down

0 comments on commit 3fb225c

Please sign in to comment.