forked from Defective4/Another-Minecraft-Chat-Client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
49 lines (49 loc) · 1.72 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
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.defective4.amcc</groupId>
<artifactId>amcc</artifactId>
<version>1.9.0</version>
<packaging>pom</packaging>
<name>Another Minecraft Chat Client</name>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<name>Nexus Release Repository</name>
<url>https://s01.oss.sonatype.org/content/repositories/releases</url>
</repository>
</distributionManagement>
<modules>
<module>amcc-protocol</module>
<module>amcc-app</module>
<module>amcc-api</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<configuration>
<release>8</release>
<encoding>utf-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
<url>https://github.com/Defective4/Another-Minecraft-Chat-Client</url>
<description>Root project for AMCC Protocol and Plugin API</description>
<scm>
<url>https://github.com/Defective4/Another-Minecraft-Chat-Client</url>
<connection>git</connection>
<developerConnection>Defective4</developerConnection>
</scm>
</project>