[infinispan-commits] Infinispan SVN: r2140 - trunk/parent.

infinispan-commits at lists.jboss.org infinispan-commits at lists.jboss.org
Tue Aug 3 11:46:50 EDT 2010


Author: sannegrinovero
Date: 2010-08-03 11:46:49 -0400 (Tue, 03 Aug 2010)
New Revision: 2140

Modified:
   trunk/parent/pom.xml
Log:
[ISPN-275] (Update Lucene Directory to work with newer Lucene versions v.3.0.x) trunk

Modified: trunk/parent/pom.xml
===================================================================
--- trunk/parent/pom.xml	2010-08-03 15:25:24 UTC (rev 2139)
+++ trunk/parent/pom.xml	2010-08-03 15:46:49 UTC (rev 2140)
@@ -107,7 +107,6 @@
       <version.jstl>1.2</version.jstl>
       <version.jta>1.0.1.GA</version.jta>
       <version.log4j>1.2.16</version.log4j>
-      <version.lucene>2.9.3</version.lucene>
       <version.mysql.driver>5.1.9</version.mysql.driver>
       <version.netty>3.2.1.Final</version.netty>
       <version.org.jboss.naming>5.0.3.GA</version.org.jboss.naming>
@@ -448,5 +447,26 @@
             <infinispan.test.jgroups.protocol>tcp</infinispan.test.jgroups.protocol>
          </properties>
       </profile>
+      <profile>
+         <!-- Used to start the tests using the latest stable version of Lucene, use: -->
+         <!-- mvn clean test -P useLatestLuceneVersion,test-functional -->
+         <id>useLatestLuceneVersion</id>
+         <activation>
+            <activeByDefault>false</activeByDefault>
+         </activation>
+         <properties>
+            <version.lucene>3.0.2</version.lucene>
+         </properties>
+      </profile>
+      <profile>
+         <!-- define the Lucene version used in release package, and as reference target -->
+         <id>useReferenceLuceneVersion</id>
+         <activation>
+            <activeByDefault>true</activeByDefault>
+         </activation>
+         <properties>
+            <version.lucene>2.9.3</version.lucene>
+         </properties>
+      </profile>
    </profiles>
 </project>



More information about the infinispan-commits mailing list