2018-10-13 22:54:52 +02: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>G-Earth</groupId>
|
|
|
|
<artifactId>G-Earth-Parent</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
2021-04-29 03:09:28 +02:00
|
|
|
<version>1.4.1</version>
|
2018-10-13 22:54:52 +02:00
|
|
|
|
2018-10-17 21:37:06 +02:00
|
|
|
<name>G-Earth-Parent</name>
|
2018-10-13 22:54:52 +02:00
|
|
|
<url>https://github.com/sirjonasxx/G-Earth</url>
|
2018-10-13 23:43:13 +02:00
|
|
|
<description>Cross Platform Habbo packetlogger/manipulator</description>
|
2018-10-13 22:54:52 +02:00
|
|
|
|
|
|
|
<modules>
|
2018-10-17 21:37:06 +02:00
|
|
|
<module>G-Earth</module>
|
2018-10-13 22:54:52 +02:00
|
|
|
</modules>
|
2018-10-16 00:35:26 +02:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.7.0</version>
|
|
|
|
<configuration>
|
2020-04-28 23:54:27 +02:00
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
2018-10-16 00:35:26 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
2019-10-06 20:53:06 +02:00
|
|
|
<version>3.1.0</version>
|
2018-10-16 00:35:26 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy-resources</id>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-resources</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${project.build.directory}</outputDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
2018-10-13 22:54:52 +02:00
|
|
|
</project>
|