You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by bu...@apache.org on 2014/03/10 17:08:05 UTC

[1/2] git commit: ACCUMULO-1882 wikisearch-ingest module fails to build.

Repository: accumulo-wikisearch
Updated Branches:
  refs/heads/1.4.5-SNAPSHOT 1e4a40bcc -> 73e321e0e


ACCUMULO-1882 wikisearch-ingest module fails to build.

Work around MDEP-187 by using prepare-package instead of process-resources to copy deps to the lib/ directory.


Project: http://git-wip-us.apache.org/repos/asf/accumulo-wikisearch/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo-wikisearch/commit/49f553a0
Tree: http://git-wip-us.apache.org/repos/asf/accumulo-wikisearch/tree/49f553a0
Diff: http://git-wip-us.apache.org/repos/asf/accumulo-wikisearch/diff/49f553a0

Branch: refs/heads/1.4.5-SNAPSHOT
Commit: 49f553a03a57ae53c8aa4308cbd36bcd8845b892
Parents: 1e4a40b
Author: Sean Busbey <bu...@clouderagovt.com>
Authored: Tue Dec 17 10:12:51 2013 -0500
Committer: Sean Busbey <bu...@cloudera.com>
Committed: Mon Mar 10 11:04:13 2014 -0500

----------------------------------------------------------------------
 ingest/pom.xml | 2 +-
 pom.xml        | 2 +-
 query/pom.xml  | 4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo-wikisearch/blob/49f553a0/ingest/pom.xml
----------------------------------------------------------------------
diff --git a/ingest/pom.xml b/ingest/pom.xml
index c4e0336..cd8df15 100644
--- a/ingest/pom.xml
+++ b/ingest/pom.xml
@@ -96,7 +96,7 @@
         <executions>
           <execution>
             <id>copy-dependencies</id>
-            <phase>process-resources</phase>
+            <phase>prepare-package</phase>
             <goals>
               <goal>copy-dependencies</goal>
             </goals>

http://git-wip-us.apache.org/repos/asf/accumulo-wikisearch/blob/49f553a0/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 44996e9..69b85db 100644
--- a/pom.xml
+++ b/pom.xml
@@ -133,7 +133,7 @@
         <executions>
           <execution>
             <id>copy-dependencies</id>
-            <phase>process-resources</phase>
+            <phase>prepare-package</phase>
             <goals>
               <goal>copy-dependencies</goal>
             </goals>

http://git-wip-us.apache.org/repos/asf/accumulo-wikisearch/blob/49f553a0/query/pom.xml
----------------------------------------------------------------------
diff --git a/query/pom.xml b/query/pom.xml
index eb932f9..c8192f6 100644
--- a/query/pom.xml
+++ b/query/pom.xml
@@ -99,7 +99,7 @@
         <executions>
           <execution>
             <id>copy-dependencies</id>
-            <phase>process-resources</phase>
+            <phase>prepare-package</phase>
             <goals>
               <goal>copy-dependencies</goal>
             </goals>
@@ -183,7 +183,7 @@
             <executions>
               <execution>
                 <id>copy-dependencies</id>
-                <phase>process-resources</phase>
+                <phase>prepare-package</phase>
                 <goals>
                   <goal>copy-dependencies</goal>
                 </goals>


[2/2] git commit: ACCUMULO-2020 Wikisearch should manage dependency conflicts.

Posted by bu...@apache.org.
ACCUMULO-2020 Wikisearch should manage dependency conflicts.

 Update enforcer plugin to require dependency convergence, fix conflicts.


Project: http://git-wip-us.apache.org/repos/asf/accumulo-wikisearch/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo-wikisearch/commit/73e321e0
Tree: http://git-wip-us.apache.org/repos/asf/accumulo-wikisearch/tree/73e321e0
Diff: http://git-wip-us.apache.org/repos/asf/accumulo-wikisearch/diff/73e321e0

Branch: refs/heads/1.4.5-SNAPSHOT
Commit: 73e321e0e9dfb9cd5efe00cefd0c6f1eb9fa3242
Parents: 49f553a
Author: Sean Busbey <bu...@clouderagovt.com>
Authored: Wed Dec 11 00:28:46 2013 -0600
Committer: Sean Busbey <bu...@cloudera.com>
Committed: Mon Mar 10 11:04:46 2014 -0500

----------------------------------------------------------------------
 pom.xml | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo-wikisearch/blob/73e321e0/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 69b85db..6be16f0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -63,6 +63,11 @@
         <executions>
           <execution>
             <id>enforce-mvn</id>
+            <configuration>
+              <rules>
+                <DependencyConvergence/>
+              </rules>
+            </configuration>
             <goals>
               <goal>enforce</goal>
             </goals>
@@ -226,6 +231,12 @@
         <groupId>org.apache.lucene</groupId>
         <artifactId>lucene-wikipedia</artifactId>
         <version>${version.lucene-wikipedia}</version>
+        <exclusions>
+          <exclusion>
+            <groupId>commons-digester</groupId>
+            <artifactId>commons-digester</artifactId>
+          </exclusion>
+        </exclusions>
       </dependency>
       <dependency>
         <groupId>com.google.protobuf</groupId>
@@ -246,6 +257,24 @@
       	<groupId>com.sun.jersey</groupId>
       	<artifactId>jersey-server</artifactId>
       	<version>1.11</version>
+        <exclusions>
+          <exclusion>
+            <groupId>asm</groupId>
+            <artifactId>asm</artifactId>
+          </exclusion>
+        </exclusions>
+      </dependency>
+      <!-- XXX This is just to fix the dependency conflict in Hadoop 1 -->
+      <dependency>
+        <groupId>net.java.dev.jets3t</groupId>
+        <artifactId>jets3t</artifactId>
+        <version>0.7.1</version>
+        <exclusions>
+          <exclusion>
+            <groupId>commons-httpclient</groupId>
+            <artifactId>commons-httpclient</artifactId>
+          </exclusion>
+        </exclusions>
       </dependency>
     </dependencies>
   </dependencyManagement>