InvUI/pom.xml

88 lines
2.8 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>
2022-01-07 19:37:08 +00:00
<version>0.2-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>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-10-30 12:15:05 +00:00
<dependencies>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
2021-12-01 13:57:25 +00:00
<version>23.0.0</version>
2021-10-30 12:15:05 +00:00
<scope>compile</scope>
</dependency>
</dependencies>
2021-06-12 13:15:31 +00:00
<modules>
2021-08-23 14:38:57 +00:00
<module>InventoryAccess/IA-R1</module>
<module>InventoryAccess/IA-R2</module>
<module>InventoryAccess/IA-R3</module>
<module>InventoryAccess/IA-R4</module>
<module>InventoryAccess/IA-R5</module>
<module>InventoryAccess/IA-R6</module>
<module>InventoryAccess/IA-R7</module>
2021-12-01 13:57:25 +00:00
<module>InventoryAccess/IA-R8</module>
2021-08-23 14:38:57 +00:00
<module>InventoryAccess/IA</module>
2021-06-12 13:15:31 +00:00
<module>InvUI</module>
<module>ResourcePack</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>
2021-08-05 12:39:43 +00:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
2021-07-08 14:43:42 +00:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
2021-12-01 13:57:25 +00:00
<version>3.3.1</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-12-12 11:13:22 +00:00
<distributionManagement>
<repository>
<id>xenondevs</id>
<url>https://repo.xenondevs.xyz/releases</url>
</repository>
</distributionManagement>
2021-07-08 14:43:42 +00:00
2021-01-20 21:27:13 +00:00
</project>