This repository has been archived by the owner on Aug 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
/
pom.xml
58 lines (48 loc) · 1.93 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
<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>network.ycc.waterdog</groupId>
<artifactId>waterdog-super</artifactId>
<version>dev-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Waterdog-Super</name>
<description>Super project for Waterdog.</description>
<url>https://github.com/yesdog/Waterdog</url>
<ciManagement>
<system>jenkins</system>
<url>http://ci.codemc.org/job/yesdog/job/Waterdog</url>
</ciManagement>
<modules>
<module>Waterfall-Proxy</module>
</modules>
<scm>
<connection>scm:git:[email protected]:com:yesdog/Waterdog.git</connection>
<developerConnection>scm:git:[email protected]:yesdog/Waterdog.git</developerConnection>
<url>[email protected]:yesdog/Waterdog.git</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/yesdog/Waterdog/issues</url>
</issueManagement>
<distributionManagement>
<snapshotRepository>
<id>codemc-snapshots</id>
<url>https://repo.codemc.org/repository/maven-snapshots</url>
</snapshotRepository>
<repository>
<id>codemc-releases</id>
<url>https://repo.codemc.org/repository/maven-releases</url>
</repository>
</distributionManagement>
<build>
<defaultGoal>clean install</defaultGoal>
</build>
<properties>
<build.number>unknown</build.number>
<netty.version>4.1.49.Final</netty.version>
<!-- Require Java 8 -->
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>