[seam-commits] Seam SVN: r14996 - branches/enterprise/JBPAPP_5_0/build.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Mon Jul 23 09:23:43 EDT 2012


Author: manaRH
Date: 2012-07-23 09:23:43 -0400 (Mon, 23 Jul 2012)
New Revision: 14996

Modified:
   branches/enterprise/JBPAPP_5_0/build/core.pom.xml
   branches/enterprise/JBPAPP_5_0/build/root.pom.xml
Log:
replaced openid-consumer with all direct deps

Modified: branches/enterprise/JBPAPP_5_0/build/core.pom.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/build/core.pom.xml	2012-07-20 19:48:14 UTC (rev 14995)
+++ branches/enterprise/JBPAPP_5_0/build/core.pom.xml	2012-07-23 13:23:43 UTC (rev 14996)
@@ -333,11 +333,24 @@
     
     <dependency>
         <groupId>org.openid4java</groupId>
-        <artifactId>openid4java-consumer</artifactId>
-        <type>pom</type>
+        <artifactId>openid4java-nodeps</artifactId>
         <optional>true</optional>
     </dependency>
     
+    <!--  openId dependencies VVV -->
+    <dependency>
+        <groupId>org.apache.httpcomponents</groupId>
+        <artifactId>httpclient</artifactId>
+        <optional>true</optional>
+    </dependency>
+            
+    <dependency>
+        <groupId>net.sourceforge.nekohtml</groupId>
+        <artifactId>nekohtml</artifactId>
+        <optional>true</optional>
+    </dependency>
+    <!--  openId dependencies ^^^ -->
+    
   </dependencies>
 
 </project>

Modified: branches/enterprise/JBPAPP_5_0/build/root.pom.xml
===================================================================
--- branches/enterprise/JBPAPP_5_0/build/root.pom.xml	2012-07-20 19:48:14 UTC (rev 14995)
+++ branches/enterprise/JBPAPP_5_0/build/root.pom.xml	2012-07-23 13:23:43 UTC (rev 14996)
@@ -1059,25 +1059,37 @@
 				<version>1.3</version>
 			</dependency>
 
+            <!--  using rather directly deps for openid instead 
+            of openid-consumer due minor issues with its pom -->
 			<dependency>
 				<groupId>org.openid4java</groupId>
-				<artifactId>openid4java-consumer</artifactId>
+				<artifactId>openid4java-nodeps</artifactId>
 				<version>0.9.6</version>
-                <type>pom</type>
-				<exclusions>
-					<exclusion>
-						<groupId>xerces</groupId>
-						<artifactId>xercesImpl</artifactId>
-					</exclusion>
-
-					<exclusion>
-						<groupId>log4j</groupId>
-						<artifactId>log4j</artifactId>
-					</exclusion>
-				</exclusions>
 			</dependency>
+            
+            <dependency>
+                <groupId>org.apache.httpcomponents</groupId>
+                <artifactId>httpclient</artifactId>
+                <version>4.0</version>
+            </dependency>
+            
+            <dependency>
+                <groupId>net.sourceforge.nekohtml</groupId>
+                <artifactId>nekohtml</artifactId>
+                <version>1.9.10</version>
+                <exclusions>
+                    <exclusion>
+                        <groupId>xerces</groupId>
+                        <artifactId>xercesImpl</artifactId>
+                    </exclusion>
+                    <exclusion>
+                        <groupId>xml-apis</groupId>
+                        <artifactId>xml-apis</artifactId>
+                    </exclusion>                    
+                </exclusions>
+            </dependency>
+            <!-- end of openId deps -->
 
-
 			<dependency>
 				<groupId>com.google.gwt</groupId>
 				<artifactId>gwt-servlet</artifactId>



More information about the seam-commits mailing list