You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwebbeans.apache.org by rm...@apache.org on 2015/05/05 20:07:56 UTC

svn commit: r1677871 - in /openwebbeans/trunk/webbeans-web: pom.xml src/it/webcdiapp/pom.xml

Author: rmannibucau
Date: Tue May  5 18:07:56 2015
New Revision: 1677871

URL: http://svn.apache.org/r1677871
Log:
fixing httpclient scope/version - was inversed

Modified:
    openwebbeans/trunk/webbeans-web/pom.xml
    openwebbeans/trunk/webbeans-web/src/it/webcdiapp/pom.xml

Modified: openwebbeans/trunk/webbeans-web/pom.xml
URL: http://svn.apache.org/viewvc/openwebbeans/trunk/webbeans-web/pom.xml?rev=1677871&r1=1677870&r2=1677871&view=diff
==============================================================================
--- openwebbeans/trunk/webbeans-web/pom.xml (original)
+++ openwebbeans/trunk/webbeans-web/pom.xml Tue May  5 18:07:56 2015
@@ -48,8 +48,8 @@
             <!-- we actually only need that in the ITs, but that way it's easier for the IDE -->
             <groupId>org.apache.httpcomponents</groupId>
             <artifactId>httpclient</artifactId>
-            <version>4.2.1</version>
-            <scope>${httpclient.version}</scope>
+            <version>${httpclient.version}</version>
+            <scope>test</scope>
         </dependency>
 
         <dependency>

Modified: openwebbeans/trunk/webbeans-web/src/it/webcdiapp/pom.xml
URL: http://svn.apache.org/viewvc/openwebbeans/trunk/webbeans-web/src/it/webcdiapp/pom.xml?rev=1677871&r1=1677870&r2=1677871&view=diff
==============================================================================
--- openwebbeans/trunk/webbeans-web/src/it/webcdiapp/pom.xml (original)
+++ openwebbeans/trunk/webbeans-web/src/it/webcdiapp/pom.xml Tue May  5 18:07:56 2015
@@ -81,8 +81,8 @@
         <dependency>
             <groupId>org.apache.httpcomponents</groupId>
             <artifactId>httpclient</artifactId>
-            <version>4.2.1</version>
-            <scope>${httpclient.version}</scope>
+            <version>${httpclient.version}</version>
+            <scope>test</scope>
         </dependency>
 
     </dependencies>