Factions/pom.xml
CmdrKittens 4cca70b789 Enable compilation against multiple API versions:
Root pom.xml is now an aggregator that calls two modules:
Legacy presently builds against 1.13, enabling optimal support for older
stuff, while Main builds against latest and actually builds the same
src/main/java as before through the magic of custom directory build
settings.
2019-07-09 01:37:27 -04:00

36 lines
1.1 KiB
XML

<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>com.massivecraft</groupId>
<artifactId>Factions-aggregator</artifactId>
<version>1.6.9.5-U0.4.0</version>
<packaging>pom</packaging>
<name>Factions Aggregator Project</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<modules>
<module>modules/Legacy</module>
<module>modules/Main</module>
</modules>
<build>
<directory>FactionsIsAwesome</directory>
<sourceDirectory>FactionsIsAwesome/java</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
</project>