Skip to content

Commit 5ce61b1

Browse files
committed
DupePlus 1.4.0
1 parent a8ea635 commit 5ce61b1

File tree

15 files changed

+567
-273
lines changed

15 files changed

+567
-273
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 meme20200
3+
Copyright (c) 2025 meme20200
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

dependency-reduced-pom.xml

Lines changed: 38 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,33 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4-
<groupId>com.galaxydevnetwork</groupId>
4+
<groupId>net.meme20200</groupId>
55
<artifactId>DupePlus</artifactId>
6-
<version>1.3.0</version>
6+
<version>1.4.0</version>
77
<build>
88
<plugins>
9+
<plugin>
10+
<artifactId>maven-jar-plugin</artifactId>
11+
<version>3.4.1</version>
12+
<configuration>
13+
<archive>
14+
<manifestEntries>
15+
<paperweight-mappings-namespace>spigot</paperweight-mappings-namespace>
16+
</manifestEntries>
17+
</archive>
18+
</configuration>
19+
</plugin>
920
<plugin>
1021
<artifactId>maven-compiler-plugin</artifactId>
11-
<version>3.8.1</version>
22+
<version>3.13.0</version>
1223
<configuration>
13-
<source>11</source>
14-
<target>11</target>
24+
<source>17</source>
25+
<target>17</target>
1526
</configuration>
1627
</plugin>
1728
<plugin>
1829
<artifactId>maven-shade-plugin</artifactId>
19-
<version>3.4.1</version>
30+
<version>3.5.3</version>
2031
<executions>
2132
<execution>
2233
<phase>package</phase>
@@ -26,7 +37,7 @@
2637
<configuration>
2738
<transformers>
2839
<transformer>
29-
<mainClass>com.galaxydevnetwork</mainClass>
40+
<mainClass>net.meme20200</mainClass>
3041
</transformer>
3142
</transformers>
3243
</configuration>
@@ -36,11 +47,11 @@
3647
<relocations>
3748
<relocation>
3849
<pattern>org.bstats</pattern>
39-
<shadedPattern>com.galaxydevnetwork</shadedPattern>
50+
<shadedPattern>net.meme20200</shadedPattern>
4051
</relocation>
4152
<relocation>
42-
<pattern>com.nexomc</pattern>
43-
<shadedPattern>com.galaxydevnetwork</shadedPattern>
53+
<pattern>dev.jorel</pattern>
54+
<shadedPattern>net.meme20200</shadedPattern>
4455
</relocation>
4556
</relocations>
4657
</configuration>
@@ -64,23 +75,38 @@
6475
<id>central</id>
6576
<url>https://repo1.maven.org/maven2/</url>
6677
</repository>
78+
<repository>
79+
<id>sk89q-repo</id>
80+
<url>https://maven.enginehub.org/repo/</url>
81+
</repository>
82+
<repository>
83+
<id>placeholderapi</id>
84+
<url>https://repo.extendedclip.com/releases/</url>
85+
</repository>
6786
</repositories>
6887
<dependencies>
6988
<dependency>
7089
<groupId>org.spigotmc</groupId>
7190
<artifactId>spigot-api</artifactId>
72-
<version>1.17-R0.1-SNAPSHOT</version>
91+
<version>1.20-R0.1-SNAPSHOT</version>
7392
<scope>provided</scope>
7493
</dependency>
7594
<dependency>
7695
<groupId>dev.lone</groupId>
7796
<artifactId>api-itemsadder</artifactId>
78-
<version>4.0.2-beta-release-11</version>
97+
<version>4.0.10</version>
98+
<scope>provided</scope>
99+
</dependency>
100+
<dependency>
101+
<groupId>me.clip</groupId>
102+
<artifactId>placeholderapi</artifactId>
103+
<version>2.11.6</version>
79104
<scope>provided</scope>
80105
</dependency>
81106
</dependencies>
82107
<properties>
83108
<maven.compiler.target>17</maven.compiler.target>
109+
<java.version>17</java.version>
84110
<maven.compiler.source>17</maven.compiler.source>
85111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
86112
</properties>

pom.xml

Lines changed: 52 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,41 +4,54 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7-
<groupId>com.galaxydevnetwork</groupId>
7+
<groupId>net.meme20200</groupId>
88
<artifactId>DupePlus</artifactId>
9-
<version>1.3.0</version>
9+
<version>1.4.0</version>
1010

1111
<properties>
1212
<maven.compiler.source>17</maven.compiler.source>
13+
<java.version>17</java.version>
1314
<maven.compiler.target>17</maven.compiler.target>
1415
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1516
</properties>
1617
<build>
1718
<plugins>
19+
<plugin>
20+
<groupId>org.apache.maven.plugins</groupId>
21+
<artifactId>maven-jar-plugin</artifactId>
22+
<version>3.4.1</version>
23+
<configuration>
24+
<archive>
25+
<manifestEntries>
26+
<paperweight-mappings-namespace>spigot</paperweight-mappings-namespace>
27+
</manifestEntries>
28+
</archive>
29+
</configuration>
30+
</plugin>
1831
<plugin>
1932
<groupId>org.apache.maven.plugins</groupId>
2033
<artifactId>maven-compiler-plugin</artifactId>
21-
<version>3.8.1</version>
34+
<version>3.13.0</version>
2235
<configuration>
23-
<source>11</source>
24-
<target>11</target>
36+
<source>17</source>
37+
<target>17</target>
2538
</configuration>
2639
</plugin>
2740
<plugin>
2841
<groupId>org.apache.maven.plugins</groupId>
2942
<artifactId>maven-shade-plugin</artifactId>
30-
<version>3.4.1</version>
43+
<version>3.5.3</version>
3144
<configuration>
3245
<relocations>
3346
<relocation>
3447
<pattern>org.bstats</pattern>
3548
<!-- Replace this with your package! -->
36-
<shadedPattern>com.galaxydevnetwork</shadedPattern>
49+
<shadedPattern>net.meme20200</shadedPattern>
3750
</relocation>
3851
<relocation>
39-
<pattern>com.nexomc</pattern>
52+
<pattern>dev.jorel</pattern>
4053
<!-- Replace this with your package! -->
41-
<shadedPattern>com.galaxydevnetwork</shadedPattern>
54+
<shadedPattern>net.meme20200</shadedPattern>
4255
</relocation>
4356
</relocations>
4457
</configuration>
@@ -51,7 +64,7 @@
5164
<configuration>
5265
<transformers>
5366
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
54-
<mainClass>com.galaxydevnetwork</mainClass>
67+
<mainClass>net.meme20200</mainClass>
5568
</transformer>
5669
</transformers>
5770
</configuration>
@@ -79,46 +92,61 @@
7992
<id>central</id>
8093
<url>https://repo1.maven.org/maven2/</url>
8194
</repository>
95+
<repository>
96+
<id>sk89q-repo</id>
97+
<url>https://maven.enginehub.org/repo/</url>
98+
</repository>
99+
<repository>
100+
<id>placeholderapi</id>
101+
<url>https://repo.extendedclip.com/releases/</url>
102+
</repository>
82103
</repositories>
83104

84105
<dependencies>
85106
<dependency>
86107
<groupId>org.spigotmc</groupId>
87108
<artifactId>spigot-api</artifactId>
88-
<version>1.17-R0.1-SNAPSHOT</version>
109+
<version>1.20-R0.1-SNAPSHOT</version>
89110
<type>jar</type>
90111
<scope>provided</scope>
91112
</dependency>
113+
92114
<dependency>
93115
<groupId>dev.lone</groupId>
94116
<artifactId>api-itemsadder</artifactId>
95-
<version>4.0.2-beta-release-11</version>
117+
<version>4.0.10</version>
96118
<scope>provided</scope>
97119
</dependency>
98120
<dependency>
99121
<groupId>io.github.bananapuncher714</groupId>
100122
<artifactId>nbteditor</artifactId>
101-
<version>7.19.7</version>
123+
<version>7.19.10</version>
102124
</dependency>
125+
<dependency>
126+
<groupId>dev.jorel</groupId>
127+
<artifactId>commandapi-spigot-shade</artifactId>
128+
<version>11.0.0</version>
129+
</dependency>
130+
103131
<dependency>
104132
<groupId>net.kyori</groupId>
105133
<artifactId>adventure-text-minimessage</artifactId>
106-
<version>4.14.0</version>
134+
<version>4.25.0</version>
107135
</dependency>
108136
<dependency>
109137
<groupId>net.kyori</groupId>
110138
<artifactId>adventure-api</artifactId>
111-
<version>4.14.0</version>
139+
<version>4.25.0</version>
112140
</dependency>
113141
<dependency>
114142
<groupId>net.kyori</groupId>
115143
<artifactId>adventure-platform-bukkit</artifactId>
116-
<version>4.3.0</version>
144+
<version>4.4.1</version>
117145
</dependency>
118146
<dependency>
119147
<groupId>net.kyori</groupId>
120148
<artifactId>adventure-text-serializer-plain</artifactId>
121-
<version>4.14.0</version>
149+
<version>4.25.0</version>
122150
</dependency>
123151
<dependency>
124152
<groupId>org.bstats</groupId>
@@ -129,7 +157,13 @@
129157
<dependency>
130158
<groupId>org.json</groupId>
131159
<artifactId>json</artifactId>
132-
<version>20240303</version>
160+
<version>20250517</version>
161+
</dependency>
162+
<dependency>
163+
<groupId>me.clip</groupId>
164+
<artifactId>placeholderapi</artifactId>
165+
<version>2.11.6</version>
166+
<scope>provided</scope>
133167
</dependency>
134168
</dependencies>
135169

src/main/java/com/galaxydevnetwork/Bukkit/TabCompletors/BukkitDupeCommandTabCompleter.java

Lines changed: 0 additions & 18 deletions
This file was deleted.

src/main/java/com/galaxydevnetwork/Bukkit/TabCompletors/BukkitDupePlusCommandTabCompleter.java

Lines changed: 0 additions & 36 deletions
This file was deleted.

0 commit comments

Comments
 (0)