Maven Repository - POM file for Web Service woden 1.0.0M6 1.0.0M6

Summary

Woden.

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 ....

Declaration

Here is the list of declaration for woden. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.apache.woden</groupId>
   <artifactId>woden</artifactId>
   <version>1.0.0M6</version>
</dependency>

If you think this Maven repository POM file listing for woden is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.





License

Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.

Depends on

The woden-1.0.0M6 has 6 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
Web Servicewsdl4j 1.6.1
Java stub generator for WSDL
33
ParserxercesImpl 2.8.0
Xerces2 is the next generation of high performance, fully compliant XML parsers in the Apache Xerces family. This new version of Xerces introduces the Xerces Native Interface (XNI), a complete framework for building parser components and configurations that is extremely modular and easy...
9
JUnitjunit 3.8.2
JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java.
555

Plugin

The following plugins are used in the woden-1.0.0M6.jar

  1. maven-compiler-plugin
  2. maven-surefire-report-plugin

POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="UTF-8"?><project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.apache.woden</groupId>
  <artifactId>woden</artifactId>
  <name>Woden</name>
  <version>1.0.0M6</version>
  <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>
  <issueManagement>
    <system>jira</system>
    <url>http://issues.apache.org/jira/browse/Woden</url>
  </issueManagement>
  <inceptionYear>2005</inceptionYear>
  <mailingLists>
    <mailingList>
      <name>Woden Developers</name>
      <subscribe>woden-dev-subscribe@ws.apache.org</subscribe>
      <unsubscribe>woden-dev-unsubscribe@ws.apache.org</unsubscribe>
      <post>woden-dev@ws.apache.org</post>
      <archive>http://mail-archives.apache.org/mod_mbox/ws-woden-dev/</archive>
    </mailingList>
    <mailingList>
      <name>woden-cvs</name>
      <subscribe>woden-cvs-subscribe@incubator.apache.org</subscribe>
      <unsubscribe>woden-cvs-unsubscribe@incubator.apache.org</unsubscribe>
    </mailingList>
  </mailingLists>
  <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>
  <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>
  <dependencies>
    <dependency>
      <groupId>org.apache.ws.commons</groupId>
      <artifactId>XmlSchema</artifactId>
      <version>1.1</version>
    </dependency>
    <dependency>
      <groupId>wsdl4j</groupId>
      <artifactId>wsdl4j</artifactId>
      <version>1.6.1</version>
    </dependency>
    <dependency>
      <groupId>xerces</groupId>
      <artifactId>xercesImpl</artifactId>
      <version>2.8.0</version>
    </dependency>
    <dependency>
      <groupId>xml-apis</groupId>
      <artifactId>xml-apis</artifactId>
      <version>1.3.03</version>
    </dependency>
    <dependency>
      <groupId>org.apache.ws.commons.axiom</groupId>
      <artifactId>axiom-impl</artifactId>
      <version>1.1.1</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.2</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <reporting>
    <plugins>
      <plugin>
        <artifactId>maven-surefire-report-plugin</artifactId>
      </plugin>
    </plugins>
  </reporting>
  <distributionManagement>
    <status>deployed</status>
  </distributionManagement>
</project>