<?xml version="1.0" encoding="UTF-8"?>
<!--
  ~ Copyright 2015 Red Hat, Inc. and/or its affiliates.
  ~
  ~ Licensed under the Apache License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
  -->
<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.wildfly.swarm</groupId>
        <artifactId>wildfly-swarm-parent</artifactId>
        <version>1.0.0.Alpha4</version>
        <relativePath>../</relativePath>
    </parent>

    <groupId>org.wildfly.swarm</groupId>
    <artifactId>wildfly-swarm-plugin</artifactId>

    <name>WildFly Swarm: Plugin</name>
    <description>WildFly Swarm: Plugin</description>

    <packaging>maven-plugin</packaging>

    <repositories>
      <repository>
        <id>spring-releases</id>
        <url>http://repo.spring.io/libs-release-remote/</url>
      </repository>
      <repository>
        <id>public-jboss</id>
        <url>https://repository.jboss.org/nexus/content/groups/public-jboss</url>
      </repository>
      <repository>
        <id>spring-plugin-releases</id>
        <url>http://repo.spring.io/plugins-release/</url>
      </repository>
    </repositories>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                  <forkCount>0</forkCount>
                  <forkMode>never</forkMode>
                </configuration>
            </plugin>
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-plugin-plugin</artifactId>
              <version>3.4</version>
              <executions>
                <execution>
                  <id>default-descriptor</id>
                  <phase>process-classes</phase>
                </execution>
              </executions>
            </plugin>
        </plugins>
    </build>

    <dependencies>
      <dependency>
        <groupId>org.wildfly.swarm</groupId>
        <artifactId>wildfly-swarm-tools</artifactId>
      </dependency>
      <dependency>
        <groupId>org.apache.maven</groupId>
        <artifactId>maven-plugin-api</artifactId>
        <version>3.2.5</version>
        <scope>provided</scope>
      </dependency>
      <dependency>
        <groupId>org.apache.maven.plugin-tools</groupId>
        <artifactId>maven-plugin-annotations</artifactId>
        <version>3.4</version>
        <scope>provided</scope>
      </dependency>
      <dependency>
        <groupId>org.apache.maven</groupId>
        <artifactId>maven-core</artifactId>
        <version>3.2.5</version>
        <scope>provided</scope>
      </dependency>
      <dependency>
        <groupId>org.gradle</groupId>
        <artifactId>gradle-core</artifactId>
        <version>2.4</version>
        <scope>provided</scope>
      </dependency>
     <dependency>
        <groupId>org.gradle</groupId>
        <artifactId>gradle-base-services</artifactId>
        <version>2.4</version>
        <scope>provided</scope>
      </dependency>
     <dependency>
        <groupId>org.gradle</groupId>
        <artifactId>gradle-plugins</artifactId>
        <version>1.12</version>
        <scope>provided</scope>
      </dependency>
      <dependency>
        <groupId>org.codehaus.groovy</groupId>
        <artifactId>groovy</artifactId>
        <version>2.4.3</version>
        <scope>provided</scope>
      </dependency>
    </dependencies>

</project>
