You are viewing a plain text version of this content. The canonical link for it is here.
Posted to droids-commits@incubator.apache.org by rf...@apache.org on 2011/11/15 18:20:33 UTC

svn commit: r1202353 - /incubator/droids/branches/0.1.x/droids-tika/pom.xml

Author: rfrovarp
Date: Tue Nov 15 18:20:33 2011
New Revision: 1202353

URL: http://svn.apache.org/viewvc?rev=1202353&view=rev
Log:
Update to newer version of Tika.
Parameterize Tika version to make it easier to change.

Modified:
    incubator/droids/branches/0.1.x/droids-tika/pom.xml

Modified: incubator/droids/branches/0.1.x/droids-tika/pom.xml
URL: http://svn.apache.org/viewvc/incubator/droids/branches/0.1.x/droids-tika/pom.xml?rev=1202353&r1=1202352&r2=1202353&view=diff
==============================================================================
--- incubator/droids/branches/0.1.x/droids-tika/pom.xml (original)
+++ incubator/droids/branches/0.1.x/droids-tika/pom.xml Tue Nov 15 18:20:33 2011
@@ -46,13 +46,15 @@
     <dependency>
     	<groupId>org.apache.tika</groupId>
     	<artifactId>tika-core</artifactId>
-    	<version>0.6</version>
+    	<version>${tika-release-version}</version>
     </dependency>
     <dependency>
     	<groupId>org.apache.tika</groupId>
     	<artifactId>tika-parsers</artifactId>
-    	<version>0.6</version>
+    	<version>${tika-release-version}</version>
     </dependency>
   </dependencies>
-
+  <properties>
+    <tika-release-version>1.0</tika-release-version>
+  </properties>
 </project>