PlayerBalancer/pom.xml

42 lines
1.3 KiB
XML
Raw Normal View History

2017-01-08 22:23:19 +01:00
<?xml version="1.0" encoding="UTF-8"?>
2017-10-07 19:03:49 +02:00
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2017-01-08 22:23:19 +01:00
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>
2017-08-08 14:38:45 +02:00
<groupId>com.jaimemartz</groupId>
<artifactId>playerbalancer</artifactId>
2017-10-07 19:03:49 +02:00
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<name>PlayerBalancer Parent</name>
2017-01-08 22:23:19 +01:00
2017-01-22 23:24:04 +01:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
2017-10-07 19:03:49 +02:00
<modules>
<module>Spigot Addon</module>
<module>Main Plugin</module>
</modules>
2017-01-08 22:23:19 +01:00
<build>
<defaultGoal>clean install</defaultGoal>
<plugins>
<plugin>
2017-03-25 16:46:30 +01:00
<version>3.3</version>
2017-01-08 22:23:19 +01:00
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
</project>