<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.codehaus.enunciate</groupId>
    <artifactId>enunciate-parent</artifactId>
    <version>1.22</version>
  </parent>

  <artifactId>enunciate-jaxws-ri-rt</artifactId>
  <name>Enunciate - JAX-WS RI Runtime</name>
  <description>The JAX-WS RI runtime is a reference to all JAX-WS RI dependencies. There are no significant classes; just a reference to the runtime dependencies.</description>

  <repositories>
    <!--this has to be here to make sure the central m2-->
    <!--repo gets consulted FIRST because if not, the-->
    <!--crazy m2 server at java.net will return bogus artifacts-->
    <!--when its really not supposed to return anything -->
    <repository>
      <id>m2.central</id>
      <url>http://repo1.maven.org/maven2/</url>
    </repository>
    <repository>
      <id>java.net.1</id>
      <url>http://download.java.net/maven/1</url>
      <layout>legacy</layout>
    </repository>
    <repository>
      <id>java.net.2</id>
      <url>http://download.java.net/maven/2</url>
    </repository>
  </repositories>

  <dependencies>
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>enunciate-core-rt</artifactId>
      <version>${project.version}</version>
    </dependency>

    <dependency>
      <groupId>com.sun.xml.ws</groupId>
      <artifactId>jaxws-rt</artifactId>
    </dependency>

    <dependency>
      <groupId>org.jvnet.staxex</groupId>
      <artifactId>stax-ex</artifactId>
    </dependency>

    <!--this dep is NOT optional; confirmed 8/09.-->
    <dependency>
      <groupId>com.sun.xml.stream.buffer</groupId>
      <artifactId>streambuffer</artifactId>
    </dependency>
  </dependencies>

</project>
