You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by ju...@apache.org on 2012/08/02 13:46:45 UTC

svn commit: r1368427 - /jackrabbit/oak/trunk/oak-jcr/pom.xml

Author: jukka
Date: Thu Aug  2 11:46:45 2012
New Revision: 1368427

URL: http://svn.apache.org/viewvc?rev=1368427&view=rev
Log:
OAK-154: Full text search index

Include Lucene/Tika as test dependencies in oak-jcr to allow running of test cases from an IDE

Modified:
    jackrabbit/oak/trunk/oak-jcr/pom.xml

Modified: jackrabbit/oak/trunk/oak-jcr/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-jcr/pom.xml?rev=1368427&r1=1368426&r2=1368427&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-jcr/pom.xml (original)
+++ jackrabbit/oak/trunk/oak-jcr/pom.xml Thu Aug  2 11:46:45 2012
@@ -229,5 +229,26 @@ org.apache.jackrabbit.test.api.observati
       <version>${jackrabbit.version}</version>
       <scope>test</scope>
     </dependency>
+
+    <!-- FIXME, OAK-154 -->
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-core</artifactId>
+      <version>4.0.0-ALPHA</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-common</artifactId>
+      <version>4.0.0-ALPHA</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tika</groupId>
+      <artifactId>tika-core</artifactId>
+      <version>1.2</version>
+      <scope>test</scope>
+    </dependency>
+
   </dependencies>
 </project>