<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>
  <groupId>cz.marwland.mc.features</groupId>
  <artifactId>Stats</artifactId>
  <parent>
  	<groupId>cz.marwland.mc</groupId>
  	<artifactId>MarwStuff</artifactId>
  	<version>0.0.1-SNAPSHOT</version>
  	<relativePath>../../MarwStuff</relativePath>
  </parent>
  <build>
    <sourceDirectory>src</sourceDirectory>
    <resources>
      <resource>
        <directory>resources</directory>
      </resource>
    </resources>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.7.0</version>
        <configuration>
          <release>10</release>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>exec-maven-plugin</artifactId>
        <version>1.6.0</version>
        <groupId>org.codehaus.mojo</groupId>
        <executions>
          <execution>
            <phase>deploy</phase>
            <goals>
              <goal>exec</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <executable>${project.parent.basedir}/deploy_feature.sh</executable>
          <arguments>
            <argument>${project.build.directory}/${project.build.finalName}.jar</argument>
            <argument>${project.artifactId}</argument>
          </arguments>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-resources-plugin</artifactId>
        <configuration>
          <outputDirectory>${project.build.outputDirectory}/resources</outputDirectory>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
  	<dependency>
  	  <groupId>cz.marwland.mc</groupId>
  	  <artifactId>MarwCore</artifactId>
  	  <version>${project.parent.version}</version>
  	</dependency>
  </dependencies>
</project>