TamableFoxes/pom.xml

61 lines
2.2 KiB
XML
Raw Normal View History

2020-01-16 04:27:46 +00:00
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>net.seanomik</groupId>
<artifactId>tamablefoxes-parent</artifactId>
2021-12-12 23:32:40 +00:00
<version>2.2.3-SNAPSHOT</version>
<packaging>pom</packaging>
2020-01-16 04:27:46 +00:00
<modules>
<module>Plugin</module>
<module>Utility</module>
2021-12-12 04:49:39 +00:00
<module>1_18_1_R1</module>
<module>1_18_R1</module>
<module>1_17_1_R1</module>
<module>1_17_R1</module>
<module>1_16_R3</module>
<module>1_16_R2</module>
<module>1_16_R1</module>
<module>1_15_R1</module>
<module>1_14_R1</module>
</modules>
2020-01-16 04:27:46 +00:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<compilerArgs>
<arg>-parameters</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
2020-01-16 04:27:46 +00:00
</build>
</project>