You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by se...@apache.org on 2017/09/06 14:24:09 UTC

cxf git commit: Removing Tika Snapshot deps from the demo poms

Repository: cxf
Updated Branches:
  refs/heads/master 6f588b0ce -> 36ca8b05d


Removing Tika Snapshot deps from the demo poms


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/36ca8b05
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/36ca8b05
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/36ca8b05

Branch: refs/heads/master
Commit: 36ca8b05d55779971e4ecb681122ed610f9d5bf9
Parents: 6f588b0
Author: Sergey Beryozkin <sb...@gmail.com>
Authored: Wed Sep 6 15:23:55 2017 +0100
Committer: Sergey Beryozkin <sb...@gmail.com>
Committed: Wed Sep 6 15:23:55 2017 +0100

----------------------------------------------------------------------
 .../main/release/samples/jax_rs/search/pom.xml  | 27 ++-----------------
 .../main/release/samples/jax_rs/spark/pom.xml   | 28 ++++++++------------
 2 files changed, 13 insertions(+), 42 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/36ca8b05/distribution/src/main/release/samples/jax_rs/search/pom.xml
----------------------------------------------------------------------
diff --git a/distribution/src/main/release/samples/jax_rs/search/pom.xml b/distribution/src/main/release/samples/jax_rs/search/pom.xml
index ad2cb20..8f22520b 100644
--- a/distribution/src/main/release/samples/jax_rs/search/pom.xml
+++ b/distribution/src/main/release/samples/jax_rs/search/pom.xml
@@ -132,18 +132,8 @@
         </dependency>                    
         <dependency>
             <groupId>org.apache.tika</groupId>
-            <artifactId>tika-core</artifactId>
-            <version>2.0-SNAPSHOT</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.tika</groupId>
-            <artifactId>tika-parser-pdf-module</artifactId>
-            <version>2.0-SNAPSHOT</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.tika</groupId>
-            <artifactId>tika-parser-office-module</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <artifactId>tika-parsers</artifactId>
+            <version>1.16</version>
         </dependency>
         <dependency>
             <groupId>org.apache.commons</groupId>
@@ -167,17 +157,4 @@
             <version>4.5.3</version>
         </dependency>    
     </dependencies>
-    <repositories>
-        <repository>
-            <id>apache-snapshots</id>
-            <url>http://repository.apache.org/snapshots</url>
-            <name>Apache Snapshots Repo</name>
-            <snapshots>
-                <enabled>true</enabled>
-            </snapshots>
-            <releases>
-                <enabled>false</enabled>
-            </releases>
-        </repository>
-    </repositories>
 </project>

http://git-wip-us.apache.org/repos/asf/cxf/blob/36ca8b05/distribution/src/main/release/samples/jax_rs/spark/pom.xml
----------------------------------------------------------------------
diff --git a/distribution/src/main/release/samples/jax_rs/spark/pom.xml b/distribution/src/main/release/samples/jax_rs/spark/pom.xml
index fb520ef..01f0e3c 100644
--- a/distribution/src/main/release/samples/jax_rs/spark/pom.xml
+++ b/distribution/src/main/release/samples/jax_rs/spark/pom.xml
@@ -50,28 +50,27 @@
         <dependency>
             <groupId>org.apache.spark</groupId>
             <artifactId>spark-streaming_2.10</artifactId>
-            <version>2.0.0-preview</version>
+            <version>2.0.0</version>
             <exclusions>
             <exclusion>
               <groupId>io.netty</groupId>
               <artifactId>netty</artifactId>
             </exclusion>
+            <exclusion>
+              <groupId>com.fasterxml.jackson.module</groupId>
+              <artifactId>jackson-module-scala_2.10</artifactId>
+            </exclusion>
             </exclusions>  
         </dependency>
         <dependency>
-            <groupId>org.apache.tika</groupId>
-            <artifactId>tika-core</artifactId>
-            <version>2.0-SNAPSHOT</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.tika</groupId>
-            <artifactId>tika-parser-pdf-module</artifactId>
-            <version>2.0-SNAPSHOT</version>
+          <groupId>com.fasterxml.jackson.module</groupId>
+          <artifactId>jackson-module-scala_2.10</artifactId>
+          <version>2.9.0.pr3</version>
         </dependency>
         <dependency>
             <groupId>org.apache.tika</groupId>
-            <artifactId>tika-parser-office-module</artifactId>
-            <version>2.0-SNAPSHOT</version>
+            <artifactId>tika-parsers</artifactId>
+            <version>1.16</version>
         </dependency>
     </dependencies>
 
@@ -93,10 +92,5 @@
             </plugin>
         </plugins>
     </build>
-    <repositories>
-      <repository>
-         <id>snapshots</id>
-         <url>https://repository.apache.org/content/repositories/snapshots/</url>
-      </repository> 
-    </repositories> 
+    
 </project>