You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juddi.apache.org by tc...@apache.org on 2008/08/21 09:16:33 UTC

svn commit: r687595 - /webservices/juddi/extras/soapconsole/pom.xml

Author: tcunning
Date: Thu Aug 21 00:16:32 2008
New Revision: 687595

URL: http://svn.apache.org/viewvc?rev=687595&view=rev
Log:
bug:JUDDI-130
Adding pom.xml for soap-console - needed for tomcat bundle in order
to use soap-console as a dependency.

Added:
    webservices/juddi/extras/soapconsole/pom.xml

Added: webservices/juddi/extras/soapconsole/pom.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/extras/soapconsole/pom.xml?rev=687595&view=auto
==============================================================================
--- webservices/juddi/extras/soapconsole/pom.xml (added)
+++ webservices/juddi/extras/soapconsole/pom.xml Thu Aug 21 00:16:32 2008
@@ -0,0 +1,59 @@
+<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>
+  <parent>
+    <groupId>org.apache.juddi</groupId>
+    <artifactId>juddi-parent</artifactId>
+    <version>SNAPSHOT</version>
+  </parent>
+  <groupId>org.apache.juddi</groupId>
+  <artifactId>juddi-soapconsole</artifactId>
+  <packaging>war</packaging>
+  <version>SNAPSHOT</version>
+  <name>juddi-soapconsole Webapp</name>
+  <url>http://maven.apache.org</url>
+  <dependencies>
+    <dependency>
+      <artifactId>juddi</artifactId>
+      <groupId>org.apache.juddi</groupId>
+      <version>SNAPSHOT</version> 
+        <exclusions>
+          <exclusion>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+          </exclusion>
+        </exclusions>
+    </dependency>
+    
+    <dependency>
+      <artifactId>juddi-ws</artifactId>
+      <groupId>org.apache.juddi</groupId>
+      <version>SNAPSHOT</version> 
+        <exclusions>
+          <exclusion>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-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>
+              <directory>webapp</directory>
+            </resource>
+          </webResources>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>
+



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