-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
70 lines (61 loc) · 2.26 KB
/
pom.xml
File metadata and controls
70 lines (61 loc) · 2.26 KB
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
<?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>net.tnemc</groupId>
<artifactId>TNML</artifactId>
<version>1.7.0.1-SNAPSHOT-4</version>
<packaging>pom</packaging>
<name>The New Menu Library</name>
<modules>
<module>Core</module>
<module>Bukkit</module>
<module>Paper</module>
<module>Folia</module>
<!--<module>Sponge7</module>-->
<module>Sponge8</module>
<module>Examples</module>
</modules>
<properties>
<maven.javadoc.plugin.version>3.0.1</maven.javadoc.plugin.version>
<maven.source.version>3.2.0</maven.source.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<tnil.version>0.1.2.1-SNAPSHOT-5</tnil.version>
<depend.adventure>4.19.0</depend.adventure>
</properties>
<organization>
<name>The New Economy</name>
<url>https://tnemc.net</url>
</organization>
<developers>
<developer>
<id>creatorfromhell</id>
<name>Daniel "creatorfromhell" Vidmar</name>
<email>daniel.viddy@gmail.com</email>
<url>https://cfh.dev</url>
<organization>The New Economy</organization>
<organizationUrl>https://tnemc.net</organizationUrl>
<roles>
<role>developer</role>
</roles>
<timezone>America/New_York</timezone>
</developer>
</developers>
<repositories>
<repository>
<id>codemc-creatorfromhell</id>
<url>https://repo.codemc.io/repository/creatorfromhell/</url>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>codemc-releases</id>
<url>https://repo.codemc.io/repository/maven-releases/</url>
</repository>
<snapshotRepository>
<id>codemc-snapshots</id>
<url>https://repo.codemc.io/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
</project>