SGF-469 - Add support for CDI.

(cherry picked from commit 34da7ec91044c9f01647d444ccbe12ed890b4cc6)
Signed-off-by: John Blum <jblum@pivotal.io>
This commit is contained in:
John Blum
2016-02-17 09:08:16 -08:00
parent 4cdd9a04ba
commit b68c1f450c
17 changed files with 1231 additions and 10 deletions

31
pom.xml
View File

@@ -22,7 +22,8 @@
<antlr.version>2.7.7</antlr.version>
<gemfire.version>1.0.0-incubating-SNAPSHOT</gemfire.version>
<multithreadedtc.version>1.01</multithreadedtc.version>
<springdata.commons>1.11.2.RELEASE</springdata.commons>
<servlet-api.version>2.5</servlet-api.version>
<springdata.commons>1.12.0.BUILD-SNAPSHOT</springdata.commons>
</properties>
<repositories>
@@ -61,6 +62,14 @@
<version>${springdata.commons}</version>
</dependency>
<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<version>${cdi}</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.apache.geode</groupId>
<artifactId>gemfire-core</artifactId>
@@ -192,6 +201,26 @@
<!-- Test -->
<dependency>
<groupId>javax.el</groupId>
<artifactId>el-api</artifactId>
<version>${cdi}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>${servlet-api.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.openwebbeans.test</groupId>
<artifactId>cditest-owb</artifactId>
<version>${webbeans}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derbyLocale_zh_TW</artifactId>