2020-07-17 18:05:50 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2020-10-27 20:15:13 +01:00
|
|
|
From: YatopiaMC <yatopiamc@gmail.com>
|
2020-06-27 15:26:21 +02:00
|
|
|
Date: Wed, 26 Feb 2020 17:08:07 +0100
|
|
|
|
Subject: [PATCH] Modify POM
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/pom.xml b/pom.xml
|
2021-01-03 12:41:36 +01:00
|
|
|
index 174c0b67c1c5b41d80613128ebf2d78ee27f3cee..e20489a5834e9727a8c50435768ffe0e87af2188 100644
|
2020-06-27 15:26:21 +02:00
|
|
|
--- a/pom.xml
|
|
|
|
+++ b/pom.xml
|
|
|
|
@@ -1,11 +1,11 @@
|
2020-09-11 08:03:00 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2020-06-27 15:26:21 +02:00
|
|
|
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>
|
|
|
|
- <artifactId>tuinity</artifactId>
|
2020-08-03 18:48:42 +02:00
|
|
|
+ <artifactId>yatopia</artifactId>
|
2020-06-27 15:26:21 +02:00
|
|
|
<packaging>jar</packaging>
|
2020-11-07 08:02:33 +01:00
|
|
|
<version>1.16.4-R0.1-SNAPSHOT</version>
|
2020-06-27 15:26:21 +02:00
|
|
|
- <name>Tuinity-Server</name>
|
|
|
|
- <url>https://github.com/Spottedleaf/Tuinity</url>
|
2020-08-03 18:48:42 +02:00
|
|
|
+ <name>Yatopia-Server</name>
|
2020-08-13 17:53:32 +02:00
|
|
|
+ <url>https://github.com/YatopiaMC/Yatopia</url>
|
2020-06-27 15:26:21 +02:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<!-- <skipTests>true</skipTests> Paper - This [was] not going to end well -->
|
2020-09-09 16:18:52 +02:00
|
|
|
@@ -18,16 +18,25 @@
|
2020-06-27 15:26:21 +02:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
- <groupId>com.tuinity</groupId>
|
|
|
|
- <artifactId>tuinity-parent</artifactId>
|
2020-12-02 07:35:11 +01:00
|
|
|
+ <groupId>org.yatopiamc</groupId>
|
2020-08-03 18:48:42 +02:00
|
|
|
+ <artifactId>yatopia-parent</artifactId>
|
2020-06-27 15:26:21 +02:00
|
|
|
<version>dev-SNAPSHOT</version>
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
2020-09-09 16:18:52 +02:00
|
|
|
+ <!-- Yatopia start -->
|
|
|
|
+ <distributionManagement>
|
|
|
|
+ <repository>
|
|
|
|
+ <id>codemc-snapshots</id>
|
|
|
|
+ <url>https://repo.codemc.org/repository/nms-local/</url>
|
|
|
|
+ </repository>
|
|
|
|
+ </distributionManagement>
|
|
|
|
+ <!-- Yatopia end -->
|
|
|
|
+
|
2020-06-27 15:26:21 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
- <groupId>com.tuinity</groupId>
|
|
|
|
- <artifactId>tuinity-api</artifactId>
|
2020-12-02 07:35:11 +01:00
|
|
|
+ <groupId>org.yatopiamc</groupId>
|
2020-08-03 18:48:42 +02:00
|
|
|
+ <artifactId>yatopia-api</artifactId>
|
2020-06-27 15:26:21 +02:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2020-11-07 08:02:33 +01:00
|
|
|
@@ -151,6 +160,12 @@
|
|
|
|
<version>1.1.0-SNAPSHOT</version>
|
|
|
|
<scope>compile</scope>
|
2020-10-27 20:15:13 +01:00
|
|
|
</dependency>
|
|
|
|
+ <!-- Fast Math -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
|
+ <artifactId>commons-math3</artifactId>
|
|
|
|
+ <version>3.6.1</version>
|
|
|
|
+ </dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<repositories>
|
2020-11-07 08:33:53 +01:00
|
|
|
@@ -164,6 +179,20 @@
|
2020-08-13 17:53:32 +02:00
|
|
|
<id>spigotmc-public</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
|
|
|
</repository>
|
2020-08-03 18:48:42 +02:00
|
|
|
+
|
2020-06-27 15:26:21 +02:00
|
|
|
+ <repository>
|
|
|
|
+ <id>destroystokyo-repo</id>
|
|
|
|
+ <url>https://papermc.io/repo/repository/maven-public/</url>
|
2020-08-03 18:48:42 +02:00
|
|
|
+ </repository>
|
|
|
|
+ <repository>
|
|
|
|
+ <id>aikar</id>
|
|
|
|
+ <url>https://repo.aikar.co/nexus/content/repositories/aikar/</url>
|
2020-11-07 08:33:53 +01:00
|
|
|
+ </repository>
|
|
|
|
+ <!-- Yatopia - Add velocity repo to fix compile -->
|
|
|
|
+ <repository>
|
|
|
|
+ <id>velocity</id>
|
|
|
|
+ <url>https://nexus.velocitypowered.com/repository/maven-public/</url>
|
2020-06-27 15:26:21 +02:00
|
|
|
+ </repository>
|
2020-08-13 17:53:32 +02:00
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<pluginRepositories>
|
2020-11-07 08:33:53 +01:00
|
|
|
@@ -175,15 +204,15 @@
|
2020-06-27 15:26:21 +02:00
|
|
|
|
|
|
|
<!-- This builds a completely 'ready to start' jar with all dependencies inside -->
|
|
|
|
<build>
|
|
|
|
- <finalName>tuinity-${minecraft.version}</finalName>
|
|
|
|
- <defaultGoal>install</defaultGoal> <!-- Paper -->
|
2020-08-01 18:14:57 +02:00
|
|
|
+ <finalName>yatopia-${minecraft.version}</finalName>
|
2020-08-13 17:53:32 +02:00
|
|
|
+ <defaultGoal>clean install</defaultGoal> <!-- Paper --> <!-- Yatopia -->
|
2020-06-27 15:26:21 +02:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.lukegb.mojo</groupId>
|
|
|
|
<artifactId>gitdescribe-maven-plugin</artifactId>
|
|
|
|
<version>1.3</version>
|
|
|
|
<configuration>
|
|
|
|
- <outputPrefix>git-Tuinity-</outputPrefix> <!-- Tuinity -->
|
2020-08-13 17:53:32 +02:00
|
|
|
+ <outputPrefix>git-Yatopia-</outputPrefix> <!-- Tuinity --> <!-- Yatopia -->
|
2020-06-27 15:26:21 +02:00
|
|
|
<scmDirectory>..</scmDirectory>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|