SGF-689 - Add support for JSR-107 JCache API Annotations in Caching-defined Regions.

This commit is contained in:
John Blum
2017-11-17 20:09:06 -08:00
parent 634e6f09c9
commit ffbc9dcf5d
16 changed files with 736 additions and 245 deletions

11
pom.xml
View File

@@ -19,6 +19,7 @@
<antlr.version>2.7.7</antlr.version>
<apache-shiro.version>1.3.2</apache-shiro.version>
<assertj.version>3.6.2</assertj.version>
<cache-api.version>1.0.0</cache-api.version>
<gemfire.version>9.1.1</gemfire.version>
<google-code-findbugs.version>2.0.2</google-code-findbugs.version>
<multithreadedtc.version>1.01</multithreadedtc.version>
@@ -47,6 +48,14 @@
<dependencies>
<!-- Java & Javax -->
<dependency>
<groupId>javax.cache</groupId>
<artifactId>cache-api</artifactId>
<version>${cache-api.version}</version>
<optional>true</optional>
</dependency>
<!-- CDI -->
<!-- Dependency order required to build against CDI 1.0 and test with CDI 2.0 -->
<dependency>
@@ -55,7 +64,7 @@
<version>1.0.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.interceptor</groupId>
<artifactId>javax.interceptor-api</artifactId>