2020-09-12 02:13:40 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2021-06-13 12:34:38 +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>MMOItems</artifactId>
|
2022-08-16 12:39:43 +02:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>MMOItems-API</module>
|
|
|
|
<module>MMOItems-Dist</module>
|
|
|
|
</modules>
|
|
|
|
|
2021-06-13 12:34:38 +02:00
|
|
|
<name>MMOItems</name>
|
2021-06-27 04:16:59 +02:00
|
|
|
<description>A great item solution for your RPG server!!</description>
|
2021-06-13 12:34:38 +02:00
|
|
|
|
|
|
|
<properties>
|
2022-08-22 14:29:14 +02:00
|
|
|
<revision>6.8.2-SNAPSHOT</revision>
|
2021-06-13 12:34:38 +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>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
<configuration>
|
2022-02-25 12:34:31 +01:00
|
|
|
<source>10</source>
|
|
|
|
<target>10</target>
|
2021-06-13 12:34:38 +02:00
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-08-16 12:39:43 +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-02-12 22:03:48 +01: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>
|
2021-06-13 12:34:38 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<repositories>
|
2021-08-12 00:28:23 +02:00
|
|
|
<repository>
|
2022-07-31 15:55:55 +02:00
|
|
|
<id>phoenix</id>
|
2022-08-01 20:23:45 +02:00
|
|
|
<url>https://nexus.phoenixdvpt.fr/repository/maven-public/</url>
|
2021-08-12 00:28:23 +02:00
|
|
|
</repository>
|
|
|
|
|
2022-07-07 00:12:59 +02:00
|
|
|
<repository>
|
2022-07-31 15:55:55 +02:00
|
|
|
<id>nexus</id>
|
|
|
|
<url>https://mvn.lumine.io/repository/maven-public/</url>
|
2022-07-07 00:12:59 +02:00
|
|
|
</repository>
|
|
|
|
|
2021-06-13 12:34:38 +02:00
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.lumine</groupId>
|
2021-12-20 01:02:53 +01:00
|
|
|
<artifactId>MythicLib-dist</artifactId>
|
2022-09-16 01:30:59 +02:00
|
|
|
<version>1.4.2-SNAPSHOT</version>
|
2021-06-13 12:34:38 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
2021-11-16 07:50:49 +01:00
|
|
|
<version>22.0.0</version>
|
2021-08-18 05:02:37 +02:00
|
|
|
<scope>provided</scope>
|
2021-08-12 00:28:23 +02:00
|
|
|
</dependency>
|
|
|
|
|
2021-06-13 12:34:38 +02:00
|
|
|
</dependencies>
|
2020-09-12 02:13:40 +02:00
|
|
|
</project>
|