<?xml version="1.0" encoding="UTF-8"?>
<!--
 !
 ! Licensed to the Apache Software Foundation (ASF) under one or more
 ! contributor license agreements.  See the NOTICE file distributed with
 ! this work for additional information regarding copyright ownership.
 ! The ASF licenses this file to You 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>1.0M8</version>
  <packaging>pom</packaging>
  <inceptionYear>2005</inceptionYear>
  <name>Woden</name>
  <description>The Woden project is a 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 consists of
    a set of Java interfaces. The WSDL 2.0-specific portion of the Woden API conforms 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://ws.apache.org/woden/</url>
  <scm>
    <connection>scm:svn:http://svn.apache.org/repos/asf/webservices/woden/trunk/java/</connection>
    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/webservices/woden/trunk/java/</developerConnection>
    <url>http://svn.apache.org/viewvc/webservices/woden/trunk/java/</url>
  </scm>
  <reporting>
    <plugins>
      <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-surefire-plugin</artifactId>
          <configuration>
              <systemProperties>
                  <property>
                      <name>org.apache.woden.resolver.logging</name>
                      <value>off</value>
                  </property>
              </systemProperties>
          </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-report-plugin</artifactId>
      </plugin>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>findbugs-maven-plugin</artifactId>
        <version>1.0.0</version>
      </plugin>
    </plugins>
  </reporting>
  <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.schema</groupId>
      <artifactId>XmlSchema</artifactId>
      <version>1.4.2</version>
    </dependency>
    <dependency>
      <groupId>org.apache.ant</groupId>
      <artifactId>ant</artifactId>
      <version>1.7.0</version>
    </dependency>
    <dependency>
      <groupId>wsdl4j</groupId>
      <artifactId>wsdl4j</artifactId>
      <version>1.6.2</version>
    </dependency>
    <dependency>
      <groupId>xerces</groupId>
      <artifactId>xercesImpl</artifactId>
      <version>2.8.1</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-api</artifactId>
      <version>1.2.7</version>
    </dependency>

    <dependency>
      <groupId>org.apache.ws.commons.axiom</groupId>
      <artifactId>axiom-impl</artifactId>
      <version>1.2.7</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>org.codehaus.woodstox</groupId>
      <artifactId>wstx-asl</artifactId>
      <version>3.2.4</version>
      <scope>runtime</scope>
    </dependency>

    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.2</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <build>
      <plugins>
          <plugin>
            <artifactId>maven-jar-plugin</artifactId>
            <configuration>
              <archive>
                <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
              </archive>
            </configuration>
          </plugin>
          <plugin>
            <groupId>org.apache.felix</groupId>
            <artifactId>maven-bundle-plugin</artifactId>
            <version>${bundle.plugin.version}</version>
            <configuration>
                <instructions>
                    <Bundle-Version>${woden.osgi.version}</Bundle-Version>
                </instructions>
            </configuration>
            <executions>
              <execution>
                <id>bundle-manifest</id>
                <phase>process-classes</phase>
                <goals>
                  <goal>manifest</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
      </plugins>
  </build>
  <distributionManagement>
    <snapshotRepository>
      <id>apache.snapshots</id>
      <name>Apache Snapshot Repository</name>
      <url>scpexe://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url>
    </snapshotRepository>
  </distributionManagement>
  <modules>
    <module>woden-dom</module>
    <module>woden-om</module>
    <module>woden-api</module>
  </modules>
    <properties>
        <woden.osgi.version>1.0.0</woden.osgi.version>
        <bundle.plugin.version>1.4.0</bundle.plugin.version>
    </properties>
</project>
