You are viewing a plain text version of this content. The canonical link for it is here.
Posted to woden-dev@ws.apache.org by hu...@apache.org on 2006/09/18 15:57:09 UTC

svn commit: r447405 - /incubator/woden/trunk/java/pom.xml

Author: hughesj
Date: Mon Sep 18 06:57:08 2006
New Revision: 447405

URL: http://svn.apache.org/viewvc?view=rev&rev=447405
Log:
WODEN-36: Maven2 patch from Jochen Wiedmann (pom.xml)
I corrected the mailing list <post> to be woden-dev@ws.apache.org
There are some test failures resulting from doing mvn install. Opening JIRA
for that.

Added:
    incubator/woden/trunk/java/pom.xml

Added: incubator/woden/trunk/java/pom.xml
URL: http://svn.apache.org/viewvc/incubator/woden/trunk/java/pom.xml?view=auto&rev=447405
==============================================================================
--- incubator/woden/trunk/java/pom.xml (added)
+++ incubator/woden/trunk/java/pom.xml Mon Sep 18 06:57:08 2006
@@ -0,0 +1,133 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ !
+ ! Copyright 2006 The Apache Software Foundation.
+ !
+ ! Licensed under the Apache License, Version 2.0 (the "License");
+ ! you may not use this file except in compliance with the License.
+ ! You may obtain a copy of the License at
+ !
+ !      http://www.apache.org/licenses/LICENSE-2.0
+ !
+ ! Unless required by applicable law or agreed to in writing, software
+ ! distributed under the License is distributed on an "AS IS" BASIS,
+ ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ ! See the License for the specific language governing permissions and
+ ! limitations under the License.
+ !-->
+<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.woden</groupId>
+  <artifactId>woden</artifactId>
+  <version>M6-SNAPSHOT</version>
+  <inceptionYear>2005</inceptionYear>
+  <name>Woden</name>
+  <description>The Woden project is an incubation subproject of the Apache Web Services Project to
+    develop a Java class library for reading, manipulating, creating and writing WSDL documents,
+    initially to support WSDL 2.0 but with the longer term aim of supporting past, present and
+    future versions of WSDL.
+
+    There are two main deliverables: an API and an implementation. The Woden API will consist of
+    a set of Java interfaces. The WSDL 2.0-specific portion of the Woden API will conform to the
+    W3C WSDL 2.0 specification. The implementation will be a high performance implementation
+    directly usable in other Apache projects such as Axis2.
+  </description>
+  <url>http://incubator.apache.org/woden/</url>
+  <build>
+    <sourceDirectory>src</sourceDirectory>
+    <testSourceDirectory>test</testSourceDirectory>
+    <resources>
+      <resource>
+        <directory>src</directory>
+        <excludes>
+          <exclude>**/*.java</exclude>
+        </excludes>
+      </resource>
+    </resources>
+    <testResources>
+      <testResource>
+        <directory>test</directory>
+        <excludes>
+          <exclude>**/*.java</exclude>
+        </excludes>
+      </testResource>
+    </testResources>
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.3</source>
+          <target>1.3</target>
+          <excludes>
+            <exclude>org/apache/woden/ant/*.java</exclude>
+          </excludes>
+        </configuration>
+      </plugin>  
+    </plugins>
+  </build>
+  <mailingLists>
+    <mailingList>
+      <name>Woden Developers</name>
+      <subscribe>woden-dev-subscribe@ws.apache.org</subscribe>
+      <unsubscribe>woden-dev-unsubscribe@ws.apache.org</unsubscribe>
+      <archive>http://mail-archives.apache.org/mod_mbox/ws-woden-dev/</archive>
+      <post>woden-dev@ws.apache.org</post>
+    </mailingList>
+    <mailingList>
+      <name>woden-cvs</name>
+      <subscribe>woden-cvs-subscribe@incubator.apache.org</subscribe>
+      <unsubscribe>woden-cvs-unsubscribe@incubator.apache.org</unsubscribe>
+    </mailingList>
+  </mailingLists>
+  <issueManagement>
+    <system>jira</system>
+    <url>http://issues.apache.org/jira/browse/Woden</url>
+  </issueManagement>
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <organization>
+    <name>Apache Software Foundation</name>
+    <url>http://www.apache.org/</url>
+  </organization>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.ws.commons</groupId>
+      <artifactId>XmlSchema</artifactId>
+      <version>1.0.3</version>
+    </dependency>
+    <dependency>
+      <groupId>wsdl4j</groupId>
+      <artifactId>wsdl4j</artifactId>
+      <version>1.5.2</version>
+    </dependency>
+    <dependency>
+      <groupId>xerces</groupId>
+      <artifactId>xercesImpl</artifactId>
+      <version>2.8.0</version>
+    </dependency>
+    <dependency>
+      <groupId>xerces</groupId>
+      <artifactId>xmlParserAPIs</artifactId>
+      <version>2.6.0</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.ws.commons.axiom</groupId>
+      <artifactId>axiom-impl</artifactId>
+      <version>1.1</version>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.2</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>



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