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>
|
2021-06-23 19:54:58 +00:00
|
|
|
<artifactId>tamablefoxes-parent</artifactId>
|
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
|
|
<packaging>pom</packaging>
|
2020-01-16 04:27:46 +00:00
|
|
|
|
2021-06-23 19:54:58 +00:00
|
|
|
<modules>
|
|
|
|
<module>Plugin</module>
|
|
|
|
<module>Utility</module>
|
|
|
|
<module>1_17_R1</module>
|
|
|
|
</modules>
|
2020-01-16 04:27:46 +00:00
|
|
|
|
|
|
|
<properties>
|
2021-06-23 19:54:58 +00:00
|
|
|
<maven.compiler.target>16</maven.compiler.target>
|
|
|
|
<maven.compiler.source>16</maven.compiler.source>
|
|
|
|
<!--<java.version.source>16</java.version.source>
|
|
|
|
<java.version.target>16</java.version.target>-->
|
2020-01-16 04:27:46 +00:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<build>
|
2021-06-23 19:54:58 +00:00
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
<!--<configuration>
|
|
|
|
<source>${java.version.source}</source>
|
|
|
|
<target>${java.version.target}</target>
|
|
|
|
</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>
|
|
|
|
|
2021-06-23 19:54:58 +00:00
|
|
|
</project>
|