Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Add dependencies for CDI
Browse files Browse the repository at this point in the history
  • Loading branch information
seanf committed Jun 30, 2015
1 parent 4a238dc commit 3c1eef9
Show file tree
Hide file tree
Showing 2 changed files with 77 additions and 1 deletion.
54 changes: 53 additions & 1 deletion pom.xml
Expand Up @@ -34,12 +34,15 @@
<failIfNoTests>true</failIfNoTests>

<deltaspike.version>1.4.1</deltaspike.version>
<picketlink.version>2.5.4.SP4</picketlink.version>
<infinispan.version>6.0.2.Final</infinispan.version>
<weld.version>1.1.29.Final</weld.version>
<weld.se.version>${weld.version}</weld.se.version>
<guava.version>18.0</guava.version>
<gwt.version>2.6.1</gwt.version>
<icu4j.version>50.1.1</icu4j.version>
<lombok.source.dir>${project.build.sourceDirectory}/org/zanata</lombok.source.dir>
<lucene.version>3.6.2</lucene.version>
<picketlink.version>2.5.3.SP12</picketlink.version>

<!--
Not used yet.
Expand Down Expand Up @@ -222,6 +225,28 @@
<scope>runtime</scope>
</dependency>

<dependency>
<groupId>org.picketlink</groupId>
<artifactId>picketlink-idm-api</artifactId>
<version>${picketlink.version}</version>
</dependency>
<!--<dependency>-->
<!--<groupId>org.picketlink</groupId>-->
<!--<artifactId>picketlink-deltaspike</artifactId>-->
<!--<version>${picketlink.version}</version>-->
<!--</dependency>-->
<!--<dependency>-->
<!--<groupId>org.picketlink</groupId>-->
<!--<artifactId>picketlink-social</artifactId>-->
<!--<version>${picketlink.version}</version>-->
<!--</dependency>-->
<!--<dependency>-->
<!--<groupId>org.picketlink</groupId>-->
<!--<artifactId>picketlink-web</artifactId>-->
<!--<version>2.0.3.Final</version>-->
<!--<scope>provided</scope>-->
<!--</dependency>-->

<dependency>
<groupId>org.richfaces</groupId>
<artifactId>richfaces</artifactId>
Expand All @@ -234,6 +259,13 @@
</exclusions>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
<version>${slf4j.version}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.jboss.spec</groupId>
<artifactId>jboss-javaee-6.0</artifactId>
Expand Down Expand Up @@ -479,6 +511,26 @@
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.jglue.cdi-unit</groupId>
<artifactId>cdi-unit</artifactId>
<version>3.1.2</version>
<exclusions>
<exclusion>
<groupId>org.jboss.weld.se</groupId>
<artifactId>weld-se</artifactId>
</exclusion>
</exclusions>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.jboss.weld.se</groupId>
<artifactId>weld-se-core</artifactId>
<version>${weld.se.version}</version>
<scope>test</scope>
</dependency>

<!-- Liquibase Dependencies -->
<!-- If the Liquibase version is being updated, please refer to
any changelog files that run 'on change' and make sure that they still run
Expand Down
24 changes: 24 additions & 0 deletions zanata-war/pom.xml
Expand Up @@ -1369,6 +1369,24 @@
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.jglue.cdi-unit</groupId>
<artifactId>cdi-unit</artifactId>
<exclusions>
<exclusion>
<groupId>org.jboss.weld.se</groupId>
<artifactId>weld-se</artifactId>
</exclusion>
</exclusions>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.jboss.weld.se</groupId>
<artifactId>weld-se-core</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
Expand Down Expand Up @@ -1706,6 +1724,12 @@
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>net.sourceforge.openutils</groupId>
<artifactId>openutils-log4j</artifactId>
Expand Down

0 comments on commit 3c1eef9

Please sign in to comment.