Commits
md_5 authored 7d64a40472f
1 - | From ba2cf48c334ac070a63185d761cda2b8b41f71bd Mon Sep 17 00:00:00 2001 |
1 + | From cccf95820a92491fbea9db01027c3add08a3bad0 Mon Sep 17 00:00:00 2001 |
2 2 | From: md_5 <git@md-5.net> |
3 - | Date: Sun, 2 Jun 2013 10:36:24 +1000 |
3 + | Date: Mon, 10 Mar 2025 09:11:37 +1100 |
4 4 | Subject: [PATCH] POM Changes |
5 5 | |
6 6 | |
7 7 | diff --git a/checkstyle.xml b/checkstyle.xml |
8 8 | index 1d1e06c8..feb3b07e 100644 |
9 9 | --- a/checkstyle.xml |
10 10 | +++ b/checkstyle.xml |
11 11 | |
12 12 | |
13 13 | <!-- See https://checkstyle.org/filters/index.html --> |
14 14 | <module name="SuppressionCommentFilter"/> |
15 15 | + <module name="SuppressionCommentFilter"> |
16 16 | + <property name="offCommentFormat" value="Spigot start"/> |
17 17 | + <property name="onCommentFormat" value="Spigot end"/> |
18 18 | + </module> |
19 19 | |
20 20 | <!-- See https://checkstyle.org/checks/imports/index.html --> |
21 21 | <module name="AvoidStarImport"> |
22 22 | diff --git a/pom.xml b/pom.xml |
23 - | index 99f79931..57b74c3a 100644 |
23 + | index 33e4325d..4c8c0912 100644 |
24 24 | --- a/pom.xml |
25 25 | +++ b/pom.xml |
26 26 | |
27 27 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
28 28 | <modelVersion>4.0.0</modelVersion> |
29 29 | |
30 30 | - <groupId>org.bukkit</groupId> |
31 31 | - <artifactId>bukkit</artifactId> |
32 32 | + <groupId>org.spigotmc</groupId> |
33 33 | + <artifactId>spigot-api</artifactId> |
34 34 | <version>1.21.4-R0.1-SNAPSHOT</version> |
35 35 | <packaging>jar</packaging> |
36 36 | |
37 37 | - <name>Bukkit</name> |
38 38 | + <name>Spigot-API</name> |
39 39 | <url>https://www.spigotmc.org/</url> |
40 40 | - <description>A plugin API for Minecraft servers.</description> |
41 41 | + <description>An enhanced plugin API for Minecraft servers.</description> |
42 42 | |
43 43 | <properties> |
44 44 | <skipTests>true</skipTests> |
45 + | |
46 + | <version>0.5.0</version> |
47 + | <executions> |
48 + | <execution> |
49 + | + <configuration> |
50 + | + <scmDirectory>../../Bukkit</scmDirectory> |
51 + | + </configuration> |
52 + | <phase>initialize</phase> |
53 + | <goals> |
54 + | <goal>describe</goal> |
45 55 | -- |
46 - | 2.47.1 |
56 + | 2.48.1 |
47 57 | |