3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-14 20:10:05 +01:00
Paper/pom.xml
sulu5890 d77c69f3ed
Update Log4J (1.9.4) (#7151)
* Update Upstream (Craftbukkit)

* update log4j
2021-12-19 16:10:11 -08:00

51 Zeilen
1.6 KiB
XML

<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>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>com.destroystokyo.paper</groupId>
<artifactId>paper-parent</artifactId>
<version>dev-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Paper-Parent</name>
<description>Parent project for all Paper modules.</description>
<url>https://github.com/PaperSpigot/Paper</url>
<modules>
<module>Paper-Server</module>
<module>Paper-API</module>
</modules>
<build>
<defaultGoal>clean install</defaultGoal>
</build>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<repositories>
<repository>
<id>papermc</id>
<url>https://papermc.io/repo/repository/maven-public/</url>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>destroystokyo-releases</id>
<url>https://repo.destroystokyo.com/content/repositories/releases/</url>
</repository>
<snapshotRepository>
<id>destroystokyo-snapshots</id>
<url>https://repo.destroystokyo.com/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
</project>