|
4 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 |
|
7 | | - <groupId>com.galaxydevnetwork</groupId> |
| 7 | + <groupId>net.meme20200</groupId> |
8 | 8 | <artifactId>DupePlus</artifactId> |
9 | | - <version>1.3.0</version> |
| 9 | + <version>1.4.0</version> |
10 | 10 |
|
11 | 11 | <properties> |
12 | 12 | <maven.compiler.source>17</maven.compiler.source> |
| 13 | + <java.version>17</java.version> |
13 | 14 | <maven.compiler.target>17</maven.compiler.target> |
14 | 15 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
15 | 16 | </properties> |
16 | 17 | <build> |
17 | 18 | <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> |
18 | 31 | <plugin> |
19 | 32 | <groupId>org.apache.maven.plugins</groupId> |
20 | 33 | <artifactId>maven-compiler-plugin</artifactId> |
21 | | - <version>3.8.1</version> |
| 34 | + <version>3.13.0</version> |
22 | 35 | <configuration> |
23 | | - <source>11</source> |
24 | | - <target>11</target> |
| 36 | + <source>17</source> |
| 37 | + <target>17</target> |
25 | 38 | </configuration> |
26 | 39 | </plugin> |
27 | 40 | <plugin> |
28 | 41 | <groupId>org.apache.maven.plugins</groupId> |
29 | 42 | <artifactId>maven-shade-plugin</artifactId> |
30 | | - <version>3.4.1</version> |
| 43 | + <version>3.5.3</version> |
31 | 44 | <configuration> |
32 | 45 | <relocations> |
33 | 46 | <relocation> |
34 | 47 | <pattern>org.bstats</pattern> |
35 | 48 | <!-- Replace this with your package! --> |
36 | | - <shadedPattern>com.galaxydevnetwork</shadedPattern> |
| 49 | + <shadedPattern>net.meme20200</shadedPattern> |
37 | 50 | </relocation> |
38 | 51 | <relocation> |
39 | | - <pattern>com.nexomc</pattern> |
| 52 | + <pattern>dev.jorel</pattern> |
40 | 53 | <!-- Replace this with your package! --> |
41 | | - <shadedPattern>com.galaxydevnetwork</shadedPattern> |
| 54 | + <shadedPattern>net.meme20200</shadedPattern> |
42 | 55 | </relocation> |
43 | 56 | </relocations> |
44 | 57 | </configuration> |
|
51 | 64 | <configuration> |
52 | 65 | <transformers> |
53 | 66 | <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
54 | | - <mainClass>com.galaxydevnetwork</mainClass> |
| 67 | + <mainClass>net.meme20200</mainClass> |
55 | 68 | </transformer> |
56 | 69 | </transformers> |
57 | 70 | </configuration> |
|
79 | 92 | <id>central</id> |
80 | 93 | <url>https://repo1.maven.org/maven2/</url> |
81 | 94 | </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> |
82 | 103 | </repositories> |
83 | 104 |
|
84 | 105 | <dependencies> |
85 | 106 | <dependency> |
86 | 107 | <groupId>org.spigotmc</groupId> |
87 | 108 | <artifactId>spigot-api</artifactId> |
88 | | - <version>1.17-R0.1-SNAPSHOT</version> |
| 109 | + <version>1.20-R0.1-SNAPSHOT</version> |
89 | 110 | <type>jar</type> |
90 | 111 | <scope>provided</scope> |
91 | 112 | </dependency> |
| 113 | + |
92 | 114 | <dependency> |
93 | 115 | <groupId>dev.lone</groupId> |
94 | 116 | <artifactId>api-itemsadder</artifactId> |
95 | | - <version>4.0.2-beta-release-11</version> |
| 117 | + <version>4.0.10</version> |
96 | 118 | <scope>provided</scope> |
97 | 119 | </dependency> |
98 | 120 | <dependency> |
99 | 121 | <groupId>io.github.bananapuncher714</groupId> |
100 | 122 | <artifactId>nbteditor</artifactId> |
101 | | - <version>7.19.7</version> |
| 123 | + <version>7.19.10</version> |
102 | 124 | </dependency> |
| 125 | + <dependency> |
| 126 | + <groupId>dev.jorel</groupId> |
| 127 | + <artifactId>commandapi-spigot-shade</artifactId> |
| 128 | + <version>11.0.0</version> |
| 129 | + </dependency> |
| 130 | + |
103 | 131 | <dependency> |
104 | 132 | <groupId>net.kyori</groupId> |
105 | 133 | <artifactId>adventure-text-minimessage</artifactId> |
106 | | - <version>4.14.0</version> |
| 134 | + <version>4.25.0</version> |
107 | 135 | </dependency> |
108 | 136 | <dependency> |
109 | 137 | <groupId>net.kyori</groupId> |
110 | 138 | <artifactId>adventure-api</artifactId> |
111 | | - <version>4.14.0</version> |
| 139 | + <version>4.25.0</version> |
112 | 140 | </dependency> |
113 | 141 | <dependency> |
114 | 142 | <groupId>net.kyori</groupId> |
115 | 143 | <artifactId>adventure-platform-bukkit</artifactId> |
116 | | - <version>4.3.0</version> |
| 144 | + <version>4.4.1</version> |
117 | 145 | </dependency> |
118 | 146 | <dependency> |
119 | 147 | <groupId>net.kyori</groupId> |
120 | 148 | <artifactId>adventure-text-serializer-plain</artifactId> |
121 | | - <version>4.14.0</version> |
| 149 | + <version>4.25.0</version> |
122 | 150 | </dependency> |
123 | 151 | <dependency> |
124 | 152 | <groupId>org.bstats</groupId> |
|
129 | 157 | <dependency> |
130 | 158 | <groupId>org.json</groupId> |
131 | 159 | <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> |
133 | 167 | </dependency> |
134 | 168 | </dependencies> |
135 | 169 |
|
|
0 commit comments