forked from GeyserMC/Geyser
2dc755ca98
Despite the Bukkit suffix being correct in terms of the API, the name causes some people to download CraftBukkit instead of Spigot or Paper. All internal references to Bukkit have been renamed to Spigot.
44 lines
No EOL
1.6 KiB
XML
44 lines
No EOL
1.6 KiB
XML
<?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>
|
|
<parent>
|
|
<groupId>org.geysermc</groupId>
|
|
<artifactId>geyser-parent</artifactId>
|
|
<version>parent</version>
|
|
<relativePath>../</relativePath>
|
|
</parent>
|
|
<artifactId>bootstrap-parent</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
<repositories>
|
|
<repository>
|
|
<id>spigot-public</id>
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/public/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>bukkit-public</id>
|
|
<url>https://repo.md-5.net/content/repositories/public/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>sponge-repo</id>
|
|
<url>https://repo.spongepowered.org/maven</url>
|
|
</repository>
|
|
<repository>
|
|
<id>bungeecord-repo</id>
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
</repository>
|
|
<repository>
|
|
<id>velocity-repo</id>
|
|
<url>https://repo.velocitypowered.com/snapshots/</url>
|
|
</repository>
|
|
</repositories>
|
|
<modules>
|
|
<module>bungeecord</module>
|
|
<module>spigot</module>
|
|
<module>sponge</module>
|
|
<module>standalone</module>
|
|
<module>velocity</module>
|
|
</modules>
|
|
</project> |