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

Commit

Permalink
Upgrade hibernate and fix infinispan dependency.
Browse files Browse the repository at this point in the history
Using hibernate dependency as specified by the JBoss AS 7 bom.
  • Loading branch information
Carlos A. Munoz committed Sep 29, 2014
1 parent 15ec253 commit e6adcdb
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
9 changes: 8 additions & 1 deletion pom.xml
Expand Up @@ -54,7 +54,7 @@
<!-- Hibernate Search 4.4.x is for Hibernate Core 4.2.x:
http://in.relation.to/Bloggers/HibernateSearchWeekendReleasesFromBothMaintenanceBranches
-->
<hibernate.search.version>4.4.2.Final</hibernate.search.version>
<hibernate.search.version>4.4.4.Final</hibernate.search.version>
<hibernate.entitymanager.version>${hibernate.version}</hibernate.entitymanager.version>
<war_bundles_jsf_impl>false</war_bundles_jsf_impl>
<hibernate.validator.version>4.3.1.Final</hibernate.validator.version>
Expand Down Expand Up @@ -590,6 +590,13 @@
<artifactId>hibernate-search-infinispan</artifactId>
<version>${hibernate.search.version}</version>
<scope>${hibernate.search.scope}</scope>
<exclusions>
<!-- Slightly older version provided by the app server -->
<exclusion>
<groupId>org.infinispan</groupId>
<artifactId>infinispan-core</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down
6 changes: 6 additions & 0 deletions zanata-war/pom.xml
Expand Up @@ -1780,6 +1780,12 @@
<artifactId>hibernate-search-infinispan</artifactId>
</dependency>

<dependency>
<groupId>org.infinispan</groupId>
<artifactId>infinispan-core</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>javax.el</groupId>
<artifactId>el-api</artifactId>
Expand Down

0 comments on commit e6adcdb

Please sign in to comment.