mmocore/pom.xml

45 lines
1.2 KiB
XML
Raw Normal View History

<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>
2022-06-19 22:42:58 +02:00
<packaging>pom</packaging>
<version>${revision}</version>
<modules>
<module>bungee-plugin</module>
<module>spigot-plugin</module>
<module>dist</module>
</modules>
<name>MMOCore</name>
2021-06-14 03:28:51 +02:00
<description>Offer your players a brand new RPG experience!!</description>
<properties>
2022-06-19 22:42:58 +02:00
<revision>1.9.3</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>
2022-06-19 22:42:58 +02:00
<artifactId>maven-clean-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
2022-06-19 22:42:58 +02:00
<id>auto-clean</id>
<phase>initialize</phase>
<goals>
2022-06-19 22:42:58 +02:00
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
2022-01-21 23:14:34 +01:00
</project>