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>
|
2019-01-22 18:22:09 +01:00
|
|
|
<version>0.2.2</version>
|
2018-10-13 22:54:52 +02:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
</properties>
|
|
|
|
|
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
|
|
|
|
|
|
|
<!-- Compile our extensions too please! -->
|
|
|
|
<module>Extensions/AdminOnConnect</module>
|
|
|
|
<module>Extensions/BlockReplacePackets</module>
|
2018-11-17 19:31:52 +01:00
|
|
|
<module>Extensions/HappySpeech</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>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<!-- this would copy dependencies if we were building a non-standalone JAR -->
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${project.build.directory}/bin/lib</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<version>2.6</version>
|
|
|
|
<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>
|