<?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>wildfly-provisioning-parent</artifactId>
    <groupId>org.wildfly.galleon-plugins</groupId>
    <version>7.3.1.Final</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>wildfly-galleon-plugins</artifactId>
  <name>WildFly Galleon Plugins</name>
  <url>http://maven.apache.org</url>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <artifactSet>
                <excludes>
                  <exclude>org.aesh:aesh</exclude>
                  <exclude>org.aesh:aesh-extensions</exclude>
                  <exclude>org.jboss:jboss-dmr</exclude>
                  <exclude>org.jboss:jboss-vfs</exclude>
                  <exclude>org.jboss.logging:jboss-logging</exclude>
                  <exclude>org.jboss.logmanager:jboss-logmanager</exclude>
                  <exclude>org.jboss.marshalling:jboss-marshalling</exclude>
                  <exclude>org.jboss.marshalling:jboss-marshalling-river</exclude>
                  <exclude>org.jboss.modules:jboss-modules</exclude>
                  <exclude>org.jboss.msc:jboss-msc</exclude>
                  <exclude>org.jboss.galleon:galleon-core</exclude>
                  <exclude>org.jboss.remoting:jboss-remoting</exclude>
                  <exclude>org.jboss.remotingjmx:remoting-jmx</exclude>
                  <exclude>org.jboss.stdio:jboss-stdio</exclude>
                  <exclude>org.jboss.threads:jboss-threads</exclude>
                  <exclude>org.jboss.xnio:xnio-api</exclude>
                  <exclude>org.jboss.xnio:xnio-nio</exclude>
                  <exclude>org.wildfly.client:wildfly-client-config</exclude>
                  <exclude>org.wildfly.common:wildfly-common</exclude>
                  <exclude>org.wildfly.core:wildfly-embedded</exclude>
                  <exclude>org.wildfly.core:wildfly-cli</exclude>
                  <exclude>org.wildfly.core:wildfly-controller-client</exclude>
                  <exclude>org.wildfly.core:wildfly-launcher</exclude>
                  <exclude>org.wildfly.core:wildfly-protocol</exclude>
                  <exclude>org.wildfly.security:wildfly-elytron</exclude>
                  <exclude>xalan:xalan</exclude>
                  <exclude>xerces:xercesImpl</exclude>
                </excludes>
              </artifactSet>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <executions>
          <execution>
            <id>default-test</id>
            <phase>test</phase>
            <goals>
              <goal>test</goal>
            </goals>
            <configuration>
              <environmentVariables>
                <WFGP_TEST_VERSION>7777</WFGP_TEST_VERSION>
              </environmentVariables>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>org.jboss.galleon</groupId>
      <artifactId>galleon-core</artifactId>
      <version>6.0.4.Final</version>
      <scope>provided</scope>
      <exclusions>
        <exclusion>
          <artifactId>staxmapper</artifactId>
          <groupId>org.jboss</groupId>
        </exclusion>
        <exclusion>
          <artifactId>galleon-common-api</artifactId>
          <groupId>org.jboss.galleon</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.jboss.galleon</groupId>
      <artifactId>galleon-maven-universe</artifactId>
      <version>6.0.4.Final</version>
      <scope>provided</scope>
      <exclusions>
        <exclusion>
          <artifactId>aether-api</artifactId>
          <groupId>org.eclipse.aether</groupId>
        </exclusion>
        <exclusion>
          <artifactId>aether-util</artifactId>
          <groupId>org.eclipse.aether</groupId>
        </exclusion>
        <exclusion>
          <artifactId>galleon-common-api</artifactId>
          <groupId>org.jboss.galleon</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.wildfly.core</groupId>
      <artifactId>wildfly-launcher</artifactId>
      <version>26.0.1.Final</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.13.1</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>hamcrest-core</artifactId>
          <groupId>org.hamcrest</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.wildfly.checkstyle</groupId>
      <artifactId>wildfly-checkstyle-config</artifactId>
      <version>1.0.8.Final</version>
      <scope>provided</scope>
    </dependency>
  </dependencies>
</project>
