InvUI/pom.xml

61 lines
2.0 KiB
XML
Raw Normal View History

2021-01-20 21:27:13 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>
2021-06-12 13:15:31 +00:00
<groupId>de.studiocode.invui</groupId>
<artifactId>InvUI-Parent</artifactId>
2021-01-20 21:27:13 +00:00
<version>0.1-SNAPSHOT</version>
2021-06-12 13:15:31 +00:00
<packaging>pom</packaging>
2021-06-12 19:15:25 +00:00
2021-07-11 08:15:15 +00:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
2021-06-12 19:15:25 +00:00
<repositories>
<repository>
<id>nms-repo</id>
<url>https://repo.codemc.org/repository/nms/</url>
</repository>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
<repository>
<id>minecraft-repo</id>
<url>https://libraries.minecraft.net/</url>
</repository>
</repositories>
2021-06-12 13:15:31 +00:00
<modules>
<module>InventoryAccess/1_14_R1</module>
<module>InventoryAccess/1_15_R1</module>
<module>InventoryAccess/1_16_R1</module>
<module>InventoryAccess/1_16_R2</module>
<module>InventoryAccess/1_16_R3</module>
<module>InventoryAccess/1_17_R1</module>
2021-07-10 18:12:40 +00:00
<module>InventoryAccess/1_17_R2</module>
2021-06-12 13:15:31 +00:00
<module>InvUI</module>
2021-07-17 12:15:18 +00:00
<module>InventoryAccess/abstraction</module>
2021-06-12 13:15:31 +00:00
</modules>
2021-01-20 21:27:13 +00:00
2021-07-08 14:43:42 +00:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
2021-07-08 14:59:59 +00:00
<version>3.3.0</version>
2021-07-08 14:43:42 +00:00
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
2021-01-20 21:27:13 +00:00
</project>