<?xml version="1.0" encoding="UTF-8"?>
<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">
  <parent>
    <artifactId>tuscany-shades</artifactId>
    <groupId>org.apache.tuscany.sca</groupId>
    <version>2.0-M5</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.apache.tuscany.sca.shades</groupId>
  <artifactId>tuscany-webservices-nodep</artifactId>
  <name>Apache Tuscany SCA Web Services Jar including dependencies</name>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <version>1.3.2</version>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <transformers>
                <transformer />
              </transformers>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>org.apache.tuscany.sca.shades</groupId>
      <artifactId>tuscany-base</artifactId>
      <version>2.0-M5</version>
      <scope>provided</scope>
      <exclusions>
        <exclusion>
          <artifactId>XmlSchema</artifactId>
          <groupId>org.apache.ws.commons.schema</groupId>
        </exclusion>
        <exclusion>
          <artifactId>cglib</artifactId>
          <groupId>cglib</groupId>
        </exclusion>
        <exclusion>
          <artifactId>asm</artifactId>
          <groupId>asm</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hazelcast</artifactId>
          <groupId>com.hazelcast</groupId>
        </exclusion>
        <exclusion>
          <artifactId>hazelcast-client</artifactId>
          <groupId>com.hazelcast</groupId>
        </exclusion>
      </exclusions>
    </dependency>
  </dependencies>
</project>

