2021-05-15 03:51:16 +02:00
From 011203cba62c5509e045a31445b71ba1e580b8d6 Mon Sep 17 00:00:00 2001
2016-06-27 08:09:47 +02:00
From: Troy Frew <fuzzy_bot@arenaga.me>
2016-11-15 16:32:02 +01:00
Date: Tue, 15 Nov 2016 08:56:43 -0500
2016-06-27 08:09:47 +02:00
Subject: [PATCH] POM Changes
diff --git a/api/pom.xml b/api/pom.xml
2021-04-12 08:38:28 +02:00
index ca1ed8811..adec9d39f 100644
2016-06-27 08:09:47 +02:00
--- a/api/pom.xml
+++ b/api/pom.xml
@@ -5,41 +5,41 @@
<parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-parent</artifactId>
+ <artifactId>travertine-parent</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-api</artifactId>
+ <artifactId>travertine-api</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<packaging>jar</packaging>
- <name>Waterfall-API</name>
+ <name>Travertine-API</name>
<description>API implemented by the Elastic Portal Suite</description>
<dependencies>
<dependency>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-chat</artifactId>
+ <artifactId>travertine-chat</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-config</artifactId>
+ <artifactId>travertine-config</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-event</artifactId>
+ <artifactId>travertine-event</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-protocol</artifactId>
+ <artifactId>travertine-protocol</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
diff --git a/bootstrap/pom.xml b/bootstrap/pom.xml
2021-02-28 20:17:17 +01:00
index 37c0880cd..139b7ac12 100644
2016-06-27 08:09:47 +02:00
--- a/bootstrap/pom.xml
+++ b/bootstrap/pom.xml
@@ -5,18 +5,18 @@
<parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-parent</artifactId>
+ <artifactId>travertine-parent</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-bootstrap</artifactId>
+ <artifactId>travertine-bootstrap</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<packaging>jar</packaging>
- <name>Waterfall-Bootstrap</name>
- <description>Java 1.6 loader for Waterfall</description>
+ <name>Travertine-Bootstrap</name>
+ <description>Java 1.6 loader for Travertine</description>
<properties>
2017-07-04 23:20:14 +02:00
<maven.deploy.skip>true</maven.deploy.skip>
2020-02-17 22:12:18 +01:00
@@ -30,14 +30,14 @@
2016-06-27 08:09:47 +02:00
<dependencies>
<dependency>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-proxy</artifactId>
+ <artifactId>travertine-proxy</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
- <finalName>Waterfall</finalName>
+ <finalName>Travertine</finalName>
<plugins>
<plugin>
2017-07-04 23:20:14 +02:00
<groupId>org.apache.maven.plugins</groupId>
2016-06-27 08:09:47 +02:00
diff --git a/chat/pom.xml b/chat/pom.xml
2021-02-28 20:17:17 +01:00
index 853092339..5cc621414 100644
2016-06-27 08:09:47 +02:00
--- a/chat/pom.xml
+++ b/chat/pom.xml
2020-07-19 19:07:36 +02:00
@@ -5,18 +5,18 @@
2020-06-24 05:52:32 +02:00
2020-07-19 19:07:36 +02:00
<parent>
2016-06-27 08:09:47 +02:00
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-parent</artifactId>
+ <artifactId>travertine-parent</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-chat</artifactId>
+ <artifactId>travertine-chat</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<packaging>jar</packaging>
- <name>Waterfall-Chat</name>
- <description>Minecraft JSON chat API intended for use with Waterfall</description>
+ <name>Travertine-Chat</name>
+ <description>Minecraft JSON chat API intended for use with Travertine</description>
2018-08-23 23:58:34 +02:00
<dependencies>
<dependency>
2016-06-27 08:09:47 +02:00
diff --git a/config/pom.xml b/config/pom.xml
2021-02-28 20:17:17 +01:00
index 38db2292d..7cdcbd8b3 100644
2016-06-27 08:09:47 +02:00
--- a/config/pom.xml
+++ b/config/pom.xml
@@ -5,18 +5,18 @@
<parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-parent</artifactId>
+ <artifactId>travertine-parent</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-config</artifactId>
+ <artifactId>travertine-config</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<packaging>jar</packaging>
- <name>Waterfall-Config</name>
- <description>Generic java configuration API intended for use with Waterfall</description>
+ <name>Travertine-Config</name>
+ <description>Generic java configuration API intended for use with Travertine</description>
<dependencies>
<dependency>
diff --git a/event/pom.xml b/event/pom.xml
2021-02-28 20:17:17 +01:00
index 82a411b08..b1a990c93 100644
2016-06-27 08:09:47 +02:00
--- a/event/pom.xml
+++ b/event/pom.xml
2016-11-15 16:32:02 +01:00
@@ -5,16 +5,16 @@
2016-06-27 08:09:47 +02:00
<parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-parent</artifactId>
+ <artifactId>travertine-parent</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-event</artifactId>
+ <artifactId>travertine-event</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<packaging>jar</packaging>
- <name>Waterfall-Event</name>
- <description>Generic java event dispatching API intended for use with Waterfall.</description>
+ <name>Travertine-Event</name>
+ <description>Generic java event dispatching API intended for use with Travertine.</description>
2016-11-15 16:32:02 +01:00
</project>
2016-07-17 04:41:50 +02:00
diff --git a/log/pom.xml b/log/pom.xml
2021-02-28 20:17:17 +01:00
index 646dbfae5..00f7b9c92 100644
2016-07-17 04:41:50 +02:00
--- a/log/pom.xml
+++ b/log/pom.xml
@@ -5,18 +5,18 @@
<parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-parent</artifactId>
+ <artifactId>travertine-parent</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-07-17 04:41:50 +02:00
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-log</artifactId>
+ <artifactId>travertine-log</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-07-17 04:41:50 +02:00
<packaging>jar</packaging>
- <name>Waterfall-Log</name>
- <description>Simplistic and performant java.util.Logger based logger and console API designed for use with Waterfall and Minecraft related applications.</description>
+ <name>Travertine-Log</name>
+ <description>Simplistic and performant java.util.Logger based logger and console API designed for use with Travertine and Minecraft related applications.</description>
<dependencies>
<dependency>
@@ -27,7 +27,7 @@
</dependency>
<dependency>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-chat</artifactId>
2017-10-29 18:12:12 +01:00
+ <artifactId>travertine-chat</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
diff --git a/log4j/pom.xml b/log4j/pom.xml
2021-02-28 20:17:17 +01:00
index 51187fd15..9fe7044f9 100644
2017-10-29 18:12:12 +01:00
--- a/log4j/pom.xml
+++ b/log4j/pom.xml
2020-06-28 14:49:51 +02:00
@@ -4,18 +4,18 @@
2017-10-29 18:12:12 +01:00
<parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-parent</artifactId>
+ <artifactId>travertine-parent</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2017-10-29 18:12:12 +01:00
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-log4j</artifactId>
+ <artifactId>travertine-log4j</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2017-10-29 18:12:12 +01:00
<packaging>jar</packaging>
- <name>Waterfall-Log</name>
2020-06-28 14:49:51 +02:00
- <description>Simplistic and performant Log4j2 based logger and console API designed for use with Waterfall and Minecraft related applications.</description>
2017-10-29 18:12:12 +01:00
+ <name>Travertine-Log</name>
2020-06-28 14:49:51 +02:00
+ <description>Simplistic and performant Log4j2 based logger and console API designed for use with Travertine and Minecraft related applications.</description>
2017-10-29 18:12:12 +01:00
2018-07-20 04:23:11 +02:00
<properties>
2021-02-28 20:17:17 +01:00
<log4j2.version>2.14.0</log4j2.version>
2018-07-20 04:23:11 +02:00
@@ -50,5 +50,24 @@
<version>3.4.2</version>
<scope>runtime</scope>
2016-07-17 04:41:50 +02:00
</dependency>
2018-07-20 04:23:11 +02:00
+ <!-- Console improvements -->
+ <dependency>
+ <groupId>net.minecrell</groupId>
+ <artifactId>terminalconsoleappender</artifactId>
+ <version>1.0.0</version>
+ </dependency>
+ <dependency>
+ <groupId>net.java.dev.jna</groupId>
+ <artifactId>jna</artifactId>
+ <version>4.4.0</version>
+ <scope>runtime</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>io.github.waterfallmc</groupId>
+ <artifactId>travertine-chat</artifactId>
+ <version>${project.version}</version>
+ <scope>compile</scope>
+ </dependency>
</dependencies>
</project>
2016-06-27 08:09:47 +02:00
diff --git a/module/cmd-alert/pom.xml b/module/cmd-alert/pom.xml
2021-02-28 20:17:17 +01:00
index 472314c2f..8eb065721 100644
2016-06-27 08:09:47 +02:00
--- a/module/cmd-alert/pom.xml
+++ b/module/cmd-alert/pom.xml
@@ -5,13 +5,13 @@
<parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-module</artifactId>
+ <artifactId>travertine-module</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-module-cmd-alert</artifactId>
+ <artifactId>travertine-module-cmd-alert</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<packaging>jar</packaging>
diff --git a/module/cmd-find/pom.xml b/module/cmd-find/pom.xml
2021-02-28 20:17:17 +01:00
index de8faee02..09e2835aa 100644
2016-06-27 08:09:47 +02:00
--- a/module/cmd-find/pom.xml
+++ b/module/cmd-find/pom.xml
@@ -5,13 +5,13 @@
<parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-module</artifactId>
+ <artifactId>travertine-module</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-module-cmd-find</artifactId>
+ <artifactId>travertine-module-cmd-find</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<packaging>jar</packaging>
diff --git a/module/cmd-list/pom.xml b/module/cmd-list/pom.xml
2021-02-28 20:17:17 +01:00
index 0cab9a7ab..5d1ff0424 100644
2016-06-27 08:09:47 +02:00
--- a/module/cmd-list/pom.xml
+++ b/module/cmd-list/pom.xml
@@ -5,13 +5,13 @@
<parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-module</artifactId>
+ <artifactId>travertine-module</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-module-cmd-list</artifactId>
+ <artifactId>travertine-module-cmd-list</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<packaging>jar</packaging>
diff --git a/module/cmd-send/pom.xml b/module/cmd-send/pom.xml
2021-02-28 20:17:17 +01:00
index 240c95487..1f6a7c681 100644
2016-06-27 08:09:47 +02:00
--- a/module/cmd-send/pom.xml
+++ b/module/cmd-send/pom.xml
@@ -5,13 +5,13 @@
<parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-module</artifactId>
+ <artifactId>travertine-module</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-module-cmd-send</artifactId>
+ <artifactId>travertine-module-cmd-send</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<packaging>jar</packaging>
diff --git a/module/cmd-server/pom.xml b/module/cmd-server/pom.xml
2021-02-28 20:17:17 +01:00
index 4c13d5177..c353e8293 100644
2016-06-27 08:09:47 +02:00
--- a/module/cmd-server/pom.xml
+++ b/module/cmd-server/pom.xml
@@ -5,13 +5,13 @@
<parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-module</artifactId>
+ <artifactId>travertine-module</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-module-cmd-server</artifactId>
+ <artifactId>travertine-module-cmd-server</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<packaging>jar</packaging>
diff --git a/module/pom.xml b/module/pom.xml
2021-02-28 20:17:17 +01:00
index c9849b6c1..ca0a9c87d 100644
2016-06-27 08:09:47 +02:00
--- a/module/pom.xml
+++ b/module/pom.xml
@@ -5,18 +5,18 @@
<parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-parent</artifactId>
+ <artifactId>travertine-parent</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-module</artifactId>
+ <artifactId>travertine-module</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<packaging>pom</packaging>
- <name>Waterfall Modules</name>
- <description>Parent project for all Waterfall modules.</description>
+ <name>Travertine Modules</name>
+ <description>Parent project for all Travertine modules.</description>
<modules>
<module>cmd-alert</module>
2020-02-17 22:12:18 +01:00
@@ -36,7 +36,7 @@
2016-06-27 08:09:47 +02:00
<dependencies>
<dependency>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-api</artifactId>
+ <artifactId>travertine-api</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
diff --git a/module/reconnect-yaml/pom.xml b/module/reconnect-yaml/pom.xml
2021-02-28 20:17:17 +01:00
index 45910b0e7..d1a2d86c8 100644
2016-06-27 08:09:47 +02:00
--- a/module/reconnect-yaml/pom.xml
+++ b/module/reconnect-yaml/pom.xml
@@ -5,13 +5,13 @@
<parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-module</artifactId>
+ <artifactId>travertine-module</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-module-reconnect-yaml</artifactId>
+ <artifactId>travertine-module-reconnect-yaml</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<packaging>jar</packaging>
diff --git a/native/pom.xml b/native/pom.xml
2021-02-28 20:17:17 +01:00
index db15febbc..a2efb5e52 100644
2016-06-27 08:09:47 +02:00
--- a/native/pom.xml
+++ b/native/pom.xml
@@ -5,18 +5,18 @@
<parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-parent</artifactId>
+ <artifactId>travertine-parent</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-native</artifactId>
+ <artifactId>travertine-native</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<packaging>jar</packaging>
- <name>Waterfall-Native</name>
- <description>Optional native code to speed up and enhance Waterfall functionality.</description>
+ <name>Travertine-Native</name>
+ <description>Optional native code to speed up and enhance Travertine functionality.</description>
<dependencies>
<dependency>
diff --git a/pom.xml b/pom.xml
2021-05-15 03:51:16 +02:00
index 02480a208..f61cdf375 100644
2016-06-27 08:09:47 +02:00
--- a/pom.xml
+++ b/pom.xml
2017-07-04 23:20:14 +02:00
@@ -5,19 +5,19 @@
2016-12-10 02:55:05 +01:00
<parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-super</artifactId>
+ <artifactId>travertine-super</artifactId>
<version>dev-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
2016-06-27 08:09:47 +02:00
</parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-parent</artifactId>
+ <artifactId>travertine-parent</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<packaging>pom</packaging>
- <name>Waterfall-Parent</name>
- <description>Parent project for all Waterfall modules.</description>
- <url>https://github.com/WaterfallMC/Waterfall</url>
+ <name>Travertine-Parent</name>
+ <description>Parent project for all Travertine modules.</description>
2018-10-06 06:01:14 +02:00
+ <url>https://github.com/PaperMC/Travertine</url>
2016-11-15 16:32:02 +01:00
<inceptionYear>2015</inceptionYear>
2016-06-27 08:09:47 +02:00
<organization>
2017-07-04 23:20:14 +02:00
<name>WaterfallMC</name>
2021-05-15 03:51:16 +02:00
@@ -66,13 +66,13 @@
2016-06-27 08:09:47 +02:00
</modules>
<scm>
- <connection>scm:git:git@github.com:com:WaterfallMC/Waterfall.git</connection>
- <developerConnection>scm:git:git@github.com:WaterfallMC/Waterfall.git</developerConnection>
- <url>git@github.com:WaterfallMC/Waterfall.git</url>
2018-10-06 06:01:14 +02:00
+ <connection>scm:git:git@github.com:com:PaperMC/Travertine.git</connection>
+ <developerConnection>scm:git:git@github.com:PaperMC/Travertine.git</developerConnection>
+ <url>git@github.com:PaperMC/Travertine.git</url>
2016-06-27 08:09:47 +02:00
</scm>
<issueManagement>
<system>GitHub</system>
2018-10-06 06:01:14 +02:00
- <url>https://github.com/PaperMC/Waterfall/issues</url>
+ <url>https://github.com/PaperMC/Travertine/issues</url>
2016-06-27 08:09:47 +02:00
</issueManagement>
2016-11-15 16:32:02 +01:00
<distributionManagement>
2016-06-27 08:09:47 +02:00
diff --git a/protocol/pom.xml b/protocol/pom.xml
2021-02-28 20:17:17 +01:00
index 402266ca1..993cbca95 100644
2016-06-27 08:09:47 +02:00
--- a/protocol/pom.xml
+++ b/protocol/pom.xml
2018-12-21 16:48:19 +01:00
@@ -5,18 +5,18 @@
2016-06-27 08:09:47 +02:00
<parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-parent</artifactId>
+ <artifactId>travertine-parent</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-protocol</artifactId>
+ <artifactId>travertine-protocol</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<packaging>jar</packaging>
- <name>Waterfall-Protocol</name>
- <description>Minimal implementation of the Minecraft protocol for use in Waterfall</description>
+ <name>Travertine-Protocol</name>
+ <description>Minimal implementation of the Minecraft protocol for use in Travertine</description>
2018-12-21 16:48:19 +01:00
<!-- We really shouldn't depend on external repositories, but at least this is the Central staging one -->
<repositories>
@@ -42,7 +42,7 @@
</dependency>
2016-06-27 08:09:47 +02:00
<dependency>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-chat</artifactId>
+ <artifactId>travertine-chat</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
diff --git a/proxy/pom.xml b/proxy/pom.xml
2021-05-15 03:51:16 +02:00
index 602b9a93f..e2ce69e43 100644
2016-06-27 08:09:47 +02:00
--- a/proxy/pom.xml
+++ b/proxy/pom.xml
@@ -5,17 +5,17 @@
<parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-parent</artifactId>
+ <artifactId>travertine-parent</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-proxy</artifactId>
+ <artifactId>travertine-proxy</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<packaging>jar</packaging>
- <name>Waterfall-Proxy</name>
+ <name>Travertine-Proxy</name>
<description>Proxy component of the Elastic Portal Suite</description>
2017-07-04 23:20:14 +02:00
<properties>
2021-04-12 08:38:28 +02:00
@@ -65,31 +65,31 @@
2016-06-27 08:09:47 +02:00
</dependency>
<dependency>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-api</artifactId>
+ <artifactId>travertine-api</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.github.waterfallmc</groupId>
2017-10-29 18:12:12 +01:00
- <artifactId>waterfall-log4j</artifactId>
+ <artifactId>travertine-log4j</artifactId>
2016-07-17 04:41:50 +02:00
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.github.waterfallmc</groupId>
2016-06-27 08:09:47 +02:00
- <artifactId>waterfall-native</artifactId>
+ <artifactId>travertine-native</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-protocol</artifactId>
+ <artifactId>travertine-protocol</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-query</artifactId>
+ <artifactId>travertine-query</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
2018-10-14 12:23:29 +02:00
diff --git a/proxy/src/main/java/net/md_5/bungee/module/JenkinsModuleSource.java b/proxy/src/main/java/net/md_5/bungee/module/JenkinsModuleSource.java
2021-02-28 20:17:17 +01:00
index 338c30d35..c04992523 100644
2018-10-14 12:23:29 +02:00
--- a/proxy/src/main/java/net/md_5/bungee/module/JenkinsModuleSource.java
+++ b/proxy/src/main/java/net/md_5/bungee/module/JenkinsModuleSource.java
2020-12-30 01:15:56 +01:00
@@ -20,7 +20,7 @@ public class JenkinsModuleSource implements ModuleSource
2018-10-14 12:23:29 +02:00
{
2020-12-30 01:15:56 +01:00
final String url = String.format(
"https://papermc.io/api/v2/projects/%1$s/versions/%2$s/builds/%3$s/downloads/%4$s-%2$s-%3$s.jar",
- "waterfall",
+ "travertine", // Travertine
net.md_5.bungee.api.ProxyServer.getInstance().getVersion().split(":")[2].split("-")[0],
version.getBuild(),
module.getName()
2016-06-27 08:09:47 +02:00
diff --git a/query/pom.xml b/query/pom.xml
2021-02-28 20:17:17 +01:00
index 8ce88f4a4..813696e45 100644
2016-06-27 08:09:47 +02:00
--- a/query/pom.xml
+++ b/query/pom.xml
@@ -5,18 +5,18 @@
<parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-parent</artifactId>
+ <artifactId>travertine-parent</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-query</artifactId>
+ <artifactId>travertine-query</artifactId>
2021-01-29 11:44:37 +01:00
<version>1.16-R0.5-SNAPSHOT</version>
2016-06-27 08:09:47 +02:00
<packaging>jar</packaging>
- <name>Waterfall-Query</name>
- <description>Minecraft query implementation based on the Waterfall API.</description>
+ <name>Travertine-Query</name>
+ <description>Minecraft query implementation based on the Travertine API.</description>
<dependencies>
<dependency>
@@ -27,7 +27,7 @@
</dependency>
<dependency>
<groupId>io.github.waterfallmc</groupId>
- <artifactId>waterfall-api</artifactId>
+ <artifactId>travertine-api</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
--
2021-05-15 03:51:16 +02:00
2.31.1
2016-06-27 08:09:47 +02:00