mirror of
https://gitlab.com/phoenix-dvpmt/mmocore.git
synced 2024-11-21 23:55:28 +01:00
86 lines
2.7 KiB
XML
86 lines
2.7 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>net.Indyuce</groupId>
|
|
<artifactId>MMOCore</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>${revision}</version>
|
|
|
|
<modules>
|
|
<module>MMOCore-API</module>
|
|
<module>MMOCore-Dist</module>
|
|
</modules>
|
|
|
|
<name>MMOCore</name>
|
|
<description>Offer your players a brand new RPG experience!!</description>
|
|
|
|
<properties>
|
|
<revision>1.11.0-SNAPSHOT</revision>
|
|
<downloadSources>false</downloadSources>
|
|
<downloadJavadocs>false</downloadJavadocs>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.1</version>
|
|
<configuration>
|
|
<source>16</source>
|
|
<target>16</target>
|
|
<encoding>UTF-8</encoding>
|
|
<compilerArgument>-proc:none</compilerArgument>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<!--
|
|
Clears all 'target' folders before building the plugin again.
|
|
This prevents MythicLib from including old versions of previous
|
|
classes when building the same version again -->
|
|
<plugin>
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
<version>3.1.0</version>
|
|
<executions>
|
|
<execution>
|
|
<id>auto-clean</id>
|
|
<phase>initialize</phase>
|
|
<goals>
|
|
<goal>clean</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</build>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>phoenix</id>
|
|
<url>https://nexus.phoenixdvpt.fr/repository/maven-public/</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>lumine</id>
|
|
<url>https://mvn.lumine.io/repository/maven/</url>
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>io.lumine</groupId>
|
|
<artifactId>MythicLib-dist</artifactId>
|
|
<version>1.4.3-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|