spigot/Bukkit-Patches/0001-POM-Changes.patch

58 lines
1.9 KiB
Diff
Raw Normal View History

2025-03-26 03:05:00 +11:00
From afb4fddbf2e496ace94555ab42098377b3680c5d Mon Sep 17 00:00:00 2001
2023-12-30 08:05:31 +11:00
From: md_5 <git@md-5.net>
2025-03-10 09:35:08 +11:00
Date: Sun, 2 Jun 2013 10:36:24 +1000
2013-06-02 10:39:40 +10:00
Subject: [PATCH] POM Changes
2020-06-28 10:35:30 +10:00
diff --git a/checkstyle.xml b/checkstyle.xml
2024-10-24 06:15:00 +11:00
index 1d1e06c8..feb3b07e 100644
2020-06-28 10:35:30 +10:00
--- a/checkstyle.xml
+++ b/checkstyle.xml
2024-06-03 07:23:45 +10:00
@@ -55,6 +55,10 @@
2020-06-28 10:35:30 +10:00
2024-08-12 21:26:52 +10:00
<!-- See https://checkstyle.org/filters/index.html -->
2020-06-28 10:35:30 +10:00
<module name="SuppressionCommentFilter"/>
+ <module name="SuppressionCommentFilter">
+ <property name="offCommentFormat" value="Spigot start"/>
+ <property name="onCommentFormat" value="Spigot end"/>
+ </module>
2024-08-12 21:26:52 +10:00
<!-- See https://checkstyle.org/checks/imports/index.html -->
2020-06-28 10:35:30 +10:00
<module name="AvoidStarImport">
diff --git a/pom.xml b/pom.xml
2025-03-26 03:05:00 +11:00
index c7bba1fd..fce99867 100644
--- a/pom.xml
+++ b/pom.xml
2017-08-05 16:20:59 +10:00
@@ -3,14 +3,14 @@
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>
2015-01-05 14:32:01 +11:00
- <groupId>org.bukkit</groupId>
- <artifactId>bukkit</artifactId>
+ <groupId>org.spigotmc</groupId>
+ <artifactId>spigot-api</artifactId>
2025-03-26 03:05:00 +11:00
<version>1.21.5-R0.1-SNAPSHOT</version>
2015-01-05 14:32:01 +11:00
<packaging>jar</packaging>
- <name>Bukkit</name>
+ <name>Spigot-API</name>
2017-08-05 16:20:59 +10:00
<url>https://www.spigotmc.org/</url>
- <description>A plugin API for Minecraft servers.</description>
2015-01-05 14:32:01 +11:00
+ <description>An enhanced plugin API for Minecraft servers.</description>
<properties>
<skipTests>true</skipTests>
@@ -118,6 +118,9 @@
<version>0.5.0</version>
<executions>
<execution>
+ <configuration>
+ <scmDirectory>../../Bukkit</scmDirectory>
+ </configuration>
<phase>initialize</phase>
<goals>
<goal>describe</goal>
--
2025-03-26 03:05:00 +11:00
2.49.0