]> source.dussan.org Git - archiva.git/commitdiff
an other try to fix consumer archetype build
authorOlivier Lamy <olamy@apache.org>
Wed, 2 Apr 2014 10:41:06 +0000 (10:41 +0000)
committerOlivier Lamy <olamy@apache.org>
Wed, 2 Apr 2014 10:41:06 +0000 (10:41 +0000)
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1583961 13f79535-47bb-0310-9956-ffa450edef68

archiva-modules/archiva-base/archiva-consumers/archiva-consumer-archetype/pom.xml
archiva-modules/archiva-base/archiva-consumers/archiva-consumer-archetype/src/main/resourcesstatic/archetype-resources/pom.xml
archiva-modules/archiva-base/archiva-consumers/archiva-consumer-archetype/src/test/resources/projects/compile/archetype.properties
pom.xml

index 85003926b2887c8001160405777be53aee511b83..094ff6905a02202267ba591b72638578a0163f5d 100644 (file)
       <artifactId>wagon-http</artifactId>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpcore</artifactId>
+      <exclusions>
+        <exclusion>
+          <groupId>commons-logging</groupId>
+          <artifactId>commons-logging</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
     <dependency>
       <groupId>org.apache.maven.wagon</groupId>
       <artifactId>wagon-http-lightweight</artifactId>
       <version>1.4</version>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>commons-pool</groupId>
+      <artifactId>commons-pool</artifactId>
+      <scope>runtime</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.jsoup</groupId>
+      <artifactId>jsoup</artifactId>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
   <build>
     <resources>
index 7d723e79b5d05daaf551ae66f6a6f1ceaf0bd901..6e7411dbdcdcfdbdc5de30653ba522e7b356a605 100644 (file)
       <artifactId>slf4j-api</artifactId>
       <version>${slf4jVersion}</version>
     </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jcl-over-slf4j</artifactId>
+      <version>${slf4jVersion}</version>
+    </dependency>
 
     <dependency>
       <groupId>org.apache.logging.log4j</groupId>
       <version>${wagonVersion}</version>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpcore</artifactId>
+      <version>${httpclient.core.version}</version>
+      <exclusions>
+        <exclusion>
+          <groupId>commons-logging</groupId>
+          <artifactId>commons-logging</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
     <dependency>
       <groupId>org.apache.maven.wagon</groupId>
       <artifactId>wagon-http-lightweight</artifactId>
       <version>1.4</version>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>commons-pool</groupId>
+      <artifactId>commons-pool</artifactId>
+      <scope>test</scope>
+      <version>${commons-pool.version}</version>
+    </dependency>
   </dependencies>
   <build>
     <pluginManagement>
index 05bf22a6fb149646e3a2f1c566863cff7d2ffa67..9f87473504893826f1398fec858442dd1a835029 100644 (file)
@@ -29,3 +29,6 @@ jackrabbitVersion=${jackrabbit.version}
 springVersion=${spring.version}
 redbackVersion=${redback.version}
 derbyVersion=${derbyVersion}
+httpclient.core.version=${httpclient.core.version}
+commons-pool.version=${commons-pool.version}
+
diff --git a/pom.xml b/pom.xml
index a8da59ed49294b69d82bbd2177b7835303bc80ac..70ce36dfac48bb3872c8f4986505fd6a06b36ef5 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -59,6 +59,7 @@
     <commons-fileupload.version>1.2.2</commons-fileupload.version>
     <commons-io.version>2.4</commons-io.version>
     <commons-lang.version>2.6</commons-lang.version>
+    <commons-pool.version>1.6</commons-pool.version>
 
     <maven3x.version>3.0.5</maven3x.version>
     <maven.version>2.0.8</maven.version>
       <dependency>
         <groupId>commons-pool</groupId>
         <artifactId>commons-pool</artifactId>
-        <version>1.6</version>
+        <version>${commons-pool.version}</version>
         <scope>runtime</scope>
       </dependency>
       <dependency>