mmocore/pom.xml

86 lines
2.7 KiB
XML
Raw Permalink Normal View History

<project xmlns="http://maven.apache.org/POM/4.0.0"
2022-07-01 15:00:03 +02:00
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>
2022-08-16 10:10:58 +02:00
<packaging>pom</packaging>
<version>${revision}</version>
<modules>
<module>MMOCore-API</module>
<module>MMOCore-Dist</module>
</modules>
2022-07-01 15:00:03 +02:00
<name>MMOCore</name>
<description>Offer your players a brand new RPG experience!!</description>
2022-07-01 15:00:03 +02:00
<properties>
2022-12-26 00:20:13 +01:00
<revision>1.11.2-SNAPSHOT</revision>
2022-07-01 15:00:03 +02:00
<downloadSources>false</downloadSources>
<downloadJavadocs>false</downloadJavadocs>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
2022-01-21 23:14:34 +01:00
2022-07-01 15:00:03 +02:00
<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>
2022-07-01 15:00:03 +02:00
<encoding>UTF-8</encoding>
<compilerArgument>-proc:none</compilerArgument>
</configuration>
</plugin>
2022-08-16 10:10:58 +02:00
<!--
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 -->
2022-07-29 17:08:18 +02:00
<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>
2022-07-01 15:00:03 +02:00
</plugins>
</build>
2022-08-16 11:22:10 +02:00
<repositories>
<repository>
<id>phoenix</id>
2022-12-23 00:28:05 +01:00
<url>https://nexus.phoenixdevt.fr/repository/maven-public/</url>
2022-08-16 11:22:10 +02:00
</repository>
<repository>
<id>lumine</id>
<url>https://mvn.lumine.io/repository/maven/</url>
</repository>
</repositories>
2022-08-21 15:57:17 +02:00
<dependencies>
<dependency>
<groupId>io.lumine</groupId>
<artifactId>MythicLib-dist</artifactId>
2022-12-27 15:35:13 +01:00
<version>1.5.1-SNAPSHOT</version>
2022-08-21 15:57:17 +02:00
<scope>provided</scope>
</dependency>
</dependencies>
</project>