Yatopia/patches/server/0001-Modify-POM.patch

84 lines
3.0 KiB
Diff
Raw Normal View History

2020-05-24 13:44:25 +02:00
From 12c6f0850f54b35a108041a4be02a26df06d5a82 Mon Sep 17 00:00:00 2001
2020-02-26 17:23:57 +01:00
From: tr7zw <tr7zw@live.de>
Date: Wed, 26 Feb 2020 17:08:07 +0100
Subject: [PATCH] Modify POM
---
2020-05-07 17:23:09 +02:00
pom.xml | 25 +++++++++++++++----------
1 file changed, 15 insertions(+), 10 deletions(-)
2020-02-26 17:23:57 +01:00
diff --git a/pom.xml b/pom.xml
2020-05-24 13:44:25 +02:00
index ba3d10a1b7..f2cc703fe6 100644
2020-02-26 17:23:57 +01:00
--- a/pom.xml
+++ b/pom.xml
2020-03-21 17:29:35 +01:00
@@ -1,11 +1,12 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2020-02-26 17:23:57 +01: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>
2020-03-21 17:29:35 +01:00
- <artifactId>tuinity</artifactId>
2020-02-26 17:23:57 +01:00
+ <artifactId>yapfa</artifactId>
<packaging>jar</packaging>
<version>1.15.2-R0.1-SNAPSHOT</version>
2020-03-21 17:29:35 +01:00
- <name>Tuinity-Server</name>
- <url>https://github.com/Spottedleaf/Tuinity</url>
2020-02-26 17:23:57 +01:00
+ <name>YAPFA</name>
+ <url>https://github.com/tr7zw/YAPFA</url>
2020-03-21 17:29:35 +01:00
+
2020-02-26 17:23:57 +01:00
<properties>
<!-- <skipTests>true</skipTests> Paper - This [was] not going to end well -->
2020-03-21 17:29:35 +01:00
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2020-05-07 16:59:29 +02:00
@@ -17,16 +18,16 @@
2020-02-26 17:23:57 +01:00
</properties>
<parent>
2020-03-21 17:29:35 +01:00
- <groupId>com.tuinity</groupId>
- <artifactId>tuinity-parent</artifactId>
2020-02-26 17:23:57 +01:00
+ <groupId>de.tr7zw.yapfa</groupId>
+ <artifactId>yapfa-parent</artifactId>
<version>dev-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<dependencies>
<dependency>
2020-03-21 17:29:35 +01:00
- <groupId>com.tuinity</groupId>
- <artifactId>tuinity-api</artifactId>
2020-02-26 17:23:57 +01:00
+ <groupId>de.tr7zw.yapfa</groupId>
+ <artifactId>yapfa-api</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
2020-05-24 13:44:25 +02:00
@@ -148,6 +149,10 @@
2020-05-07 17:23:09 +02:00
Please see https://www.spigotmc.org/go/maven for more information.
-->
+ <repository>
+ <id>destroystokyo-repo</id>
+ <url>https://papermc.io/repo/repository/maven-public/</url>
+ </repository>
<repository>
<id>spigotmc-public</id>
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
2020-05-24 13:44:25 +02:00
@@ -163,15 +168,15 @@
2020-02-26 17:54:46 +01:00
<!-- This builds a completely 'ready to start' jar with all dependencies inside -->
<build>
2020-03-21 17:29:35 +01:00
- <finalName>tuinity-${minecraft.version}</finalName>
- <defaultGoal>install</defaultGoal> <!-- Paper -->
2020-02-26 17:54:46 +01:00
+ <finalName>yapfa-${minecraft.version}</finalName>
2020-03-21 17:29:35 +01:00
+ <defaultGoal>clean install</defaultGoal> <!-- Paper -->
2020-02-26 17:54:46 +01:00
<plugins>
<plugin>
2020-03-21 17:29:35 +01:00
<groupId>com.lukegb.mojo</groupId>
2020-02-26 17:23:57 +01:00
<artifactId>gitdescribe-maven-plugin</artifactId>
<version>1.3</version>
<configuration>
2020-03-21 17:29:35 +01:00
- <outputPrefix>git-Tuinity-</outputPrefix> <!-- Tuinity -->
2020-02-26 17:23:57 +01:00
+ <outputPrefix>git-YAPFA-</outputPrefix>
<scmDirectory>..</scmDirectory>
</configuration>
<executions>
--
2.25.1.windows.1