You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juddi.apache.org by ks...@apache.org on 2007/11/02 16:53:10 UTC

svn commit: r591374 - in /webservices/juddi/trunk: juddi-web-lean/ juddi-web-lean/pom.xml juddi/pom.xml pom.xml

Author: kstam
Date: Fri Nov  2 08:53:09 2007
New Revision: 591374

URL: http://svn.apache.org/viewvc?rev=591374&view=rev
Log:
JUDDI-118 applied changes based on suggested patch to produce a second lean version of the juddi.war for environments which alreade have WS support.

Added:
    webservices/juddi/trunk/juddi-web-lean/   (with props)
    webservices/juddi/trunk/juddi-web-lean/pom.xml   (with props)
Modified:
    webservices/juddi/trunk/juddi/pom.xml
    webservices/juddi/trunk/pom.xml

Propchange: webservices/juddi/trunk/juddi-web-lean/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Nov  2 08:53:09 2007
@@ -0,0 +1 @@
+target

Added: webservices/juddi/trunk/juddi-web-lean/pom.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/trunk/juddi-web-lean/pom.xml?rev=591374&view=auto
==============================================================================
--- webservices/juddi/trunk/juddi-web-lean/pom.xml (added)
+++ webservices/juddi/trunk/juddi-web-lean/pom.xml Fri Nov  2 08:53:09 2007
@@ -0,0 +1,73 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.juddi</groupId>
+  <artifactId>juddi-web-lean</artifactId>
+  <packaging>war</packaging>
+  <version>SNAPSHOT</version>
+  <name>juddi-web-lean Maven Webapp</name>
+  <url>http://maven.apache.org</url>
+  <dependencies>
+    <dependency>
+      <artifactId>juddi</artifactId>
+      <groupId>org.apache.juddi</groupId>
+      <version>SNAPSHOT</version> 
+      <exclusions>
+        <exclusion>
+           <groupId>commons-logging</groupId>
+      <artifactId>commons-logging</artifactId>
+        </exclusion>
+        <exclusion>
+         <groupId>commons-discovery</groupId>
+      <artifactId>commons-discovery</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+        </exclusion>
+        <exclusion>
+           <groupId>wsdl4j</groupId>
+      <artifactId>wsdl4j</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.apache.axis2</groupId>
+          <artifactId>axis2-kernel</artifactId>
+        </exclusion>
+         <exclusion>
+         <groupId>org.apache.ws.commons.axiom</groupId>
+      <artifactId>axiom-api</artifactId>
+        </exclusion>
+         <exclusion>
+          <groupId>stax</groupId>
+      <artifactId>stax-api</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency> 
+  </dependencies>
+  <build>
+  <plugins>
+	<plugin>
+		<groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-war-plugin</artifactId>
+        <version>2.0</version>
+        <configuration>
+		  <webResources>
+            <resource>
+              <!-- this is relative to the pom.xml directory -->
+              <directory>juddi-web/src/main/webapp</directory>
+               <excludes>
+                <exclude>**/*-LICENSE.txt</exclude>
+                <exclude>**/lib/</exclude>
+                <exclude>**/axis2.xml</exclude>
+                
+               </excludes>
+            </resource>
+          </webResources>
+        </configuration>
+	</plugin>
+	
+	</plugins>
+    <finalName>juddi</finalName>
+   </build>
+
+</project>

Propchange: webservices/juddi/trunk/juddi-web-lean/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Modified: webservices/juddi/trunk/juddi/pom.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/trunk/juddi/pom.xml?rev=591374&r1=591373&r2=591374&view=diff
==============================================================================
--- webservices/juddi/trunk/juddi/pom.xml (original)
+++ webservices/juddi/trunk/juddi/pom.xml Fri Nov  2 08:53:09 2007
@@ -253,6 +253,7 @@
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
       <version>4.1</version>
+      <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>wsdl4j</groupId>

Modified: webservices/juddi/trunk/pom.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/trunk/pom.xml?rev=591374&r1=591373&r2=591374&view=diff
==============================================================================
--- webservices/juddi/trunk/pom.xml (original)
+++ webservices/juddi/trunk/pom.xml Fri Nov  2 08:53:09 2007
@@ -123,6 +123,7 @@
     <module>juddi</module>
     <module>juddi-client</module>
     <module>juddi-web</module>
+    <module>juddi-web-lean</module>
   </modules>
   
   <distributionManagement>



---------------------------------------------------------------------
To unsubscribe, e-mail: juddi-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: juddi-cvs-help@ws.apache.org