-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
pom.xml
132 lines (122 loc) · 4.74 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<?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>
<groupId>xyz.xenondevs.invui</groupId>
<artifactId>invui-parent</artifactId>
<version>1.40</version>
<packaging>pom</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<profiles>
<profile>
<id>xenondevs-nms</id>
<repositories>
<repository>
<id>xenondevs-nms</id>
<url>https://repo.xenondevs.xyz/nms/</url>
</repository>
</repositories>
</profile>
</profiles>
<pluginRepositories>
<pluginRepository>
<id>xenondevs</id>
<url>https://repo.xenondevs.xyz/releases</url>
</pluginRepository>
</pluginRepositories>
<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>
<repository>
<id>codemc-maven-public</id>
<url>https://repo.codemc.org/repository/maven-public/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>24.1.0</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.10.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<modules>
<module>inventoryaccess/inventory-access</module>
<module>inventoryaccess/inventory-access-r1</module>
<module>inventoryaccess/inventory-access-r2</module>
<module>inventoryaccess/inventory-access-r3</module>
<module>inventoryaccess/inventory-access-r4</module>
<module>inventoryaccess/inventory-access-r5</module>
<module>inventoryaccess/inventory-access-r6</module>
<module>inventoryaccess/inventory-access-r7</module>
<module>inventoryaccess/inventory-access-r8</module>
<module>inventoryaccess/inventory-access-r9</module>
<module>inventoryaccess/inventory-access-r10</module>
<module>inventoryaccess/inventory-access-r11</module>
<module>inventoryaccess/inventory-access-r12</module>
<module>inventoryaccess/inventory-access-r13</module>
<module>inventoryaccess/inventory-access-r14</module>
<module>inventoryaccess/inventory-access-r15</module>
<module>inventoryaccess/inventory-access-r16</module>
<module>inventoryaccess/inventory-access-r17</module>
<module>inventoryaccess/inventory-access-r18</module>
<module>inventoryaccess/inventory-access-r19</module>
<module>inventoryaccess/inventory-access-r20</module>
<module>inventoryaccess/inventory-access-r21</module>
<module>invui-core</module>
<module>invui-kotlin</module>
<module>invui</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.3.0</version>
</plugin>
<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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.5</version>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>xenondevs</id>
<url>https://repo.xenondevs.xyz/releases</url>
</repository>
</distributionManagement>
</project>