mmoitems/pom.xml

92 lines
3.0 KiB
XML
Raw Normal View History

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-12-23 18:24:13 +01:00
<revision>6.9.1-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>
2022-10-21 13:53:23 +02:00
<!-- Repositories -->
<repositories>
<repository>
<id>phoenix</id>
2022-12-27 14:54:57 +01:00
<url>https://nexus.phoenixdevt.fr/repository/maven-public/</url>
2022-10-21 13:53:23 +02:00
</repository>
<repository>
<id>nexus</id>
<url>https://mvn.lumine.io/repository/maven-public/</url>
</repository>
</repositories>
<!-- Dependencies -->
<dependencies>
<!-- MythicLib -->
<dependency>
<groupId>io.lumine</groupId>
<artifactId>MythicLib-dist</artifactId>
2022-12-27 14:54:57 +01:00
<version>1.5.1-SNAPSHOT</version>
2022-10-21 13:53:23 +02:00
<scope>provided</scope>
</dependency>
<!-- Jetbrains Annotations -->
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>23.0.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
<!-- Build -->
2021-06-13 12:34:38 +02:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
2022-12-22 23:06:38 +01:00
<source>1.8</source>
<target>1.8</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>
2020-09-12 02:13:40 +02:00
</project>