<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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.kie.server</groupId>
    <artifactId>kie-server-tests</artifactId>
    <version>7.30.0.Final</version>
  </parent>
  <artifactId>kie-server-test-web-service</artifactId>
  <packaging>war</packaging>

  <name>KIE :: Execution Server :: Tests :: JAX-WS Test Web Service</name>
  <description>JAX-WS Test Web Service to verify WebService integration with jBPM.</description>

  <build>
    <finalName>kie-server-test-web-service</finalName>
  </build>

  <dependencies>
    <dependency>
      <groupId>org.jboss.spec.javax.xml.bind</groupId>
      <artifactId>jboss-jaxb-api_2.3_spec</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>javax.jws</groupId>
      <artifactId>jsr181-api</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.jboss.spec.javax.xml.ws</groupId>
      <artifactId>jboss-jaxws-api_2.3_spec</artifactId>
      <scope>provided</scope>
    </dependency>
  </dependencies>
</project>