<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.clazzes.svc</groupId>
    <artifactId>svc-runner</artifactId>
    <version>1.3.7</version>
    <relativePath>..</relativePath>
  </parent>
  <artifactId>svc-runner-opener</artifactId>
  <name>Service Runner Module Opener</name>

  <dependencies>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-simple</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <!--
          Exclude main dependencies from svc-runner-core, this way we can collect our
          dependencies using

          mvn -DincludeScope=compile -DoutputDirectory=... dependency:copy-dependencies
        -->
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-dependency-plugin</artifactId>
        <configuration>
          <excludeArtifactIds>
            svc-api,
            slf4j-api
          </excludeArtifactIds>
          <excludeTransitive>true</excludeTransitive>
        </configuration>
      </plugin>
    </plugins>
  </build>

</project>
