forked from kangarko/ChatControl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
57 lines (49 loc) · 1.57 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
<?xml version="1.0" encoding="UTF-8"?>
<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>org.mineacademy</groupId>
<artifactId>chatcontrol-parent</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<modules>
<module>chatcontrol-core</module>
<module>chatcontrol-proxy-core</module>
<module>chatcontrol-bukkit</module>
<module>chatcontrol-velocity</module>
<module>chatcontrol-bungeecord</module>
</modules>
<repositories>
<repository>
<id>mineacademy-repo</id>
<url>https://bitbucket.org/kangarko/libraries/raw/master</url>
</repository>
<repository>
<id>papermc</id>
<url>https://repo.papermc.io/repository/maven-public/</url>
</repository>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<repository>
<id>roinujnosde-repo</id>
<url>https://repo.roinujnosde.me/releases/</url>
</repository>
<repository>
<id>simonsators Repo</id>
<url>https://simonsator.de/repo</url>
</repository>
<repository>
<id>alessiodp-repo</id>
<url>https://repo.alessiodp.com/releases/</url>
</repository>
</repositories>
<properties>
<author>kangarko</author>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
</project>