|
6 | 6 |
|
7 | 7 | <groupId>com.technicjelle</groupId> |
8 | 8 | <artifactId>BlueMapPlayerControl</artifactId> |
9 | | - <version>1.5</version> |
| 9 | + <version>1.6</version> |
10 | 10 | <packaging>jar</packaging> |
11 | 11 |
|
12 | 12 | <name>BlueMapPlayerControl</name> |
13 | 13 |
|
14 | 14 | <properties> |
15 | | - <java.version>11</java.version> |
| 15 | + <java.version>21</java.version> |
16 | 16 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
17 | 17 | </properties> |
18 | 18 |
|
|
21 | 21 | <plugin> |
22 | 22 | <groupId>org.apache.maven.plugins</groupId> |
23 | 23 | <artifactId>maven-compiler-plugin</artifactId> |
24 | | - <version>3.8.1</version> |
| 24 | + <version>3.13.0</version> |
25 | 25 | <configuration> |
26 | 26 | <source>${java.version}</source> |
27 | 27 | <target>${java.version}</target> |
|
30 | 30 | <plugin> |
31 | 31 | <groupId>org.apache.maven.plugins</groupId> |
32 | 32 | <artifactId>maven-shade-plugin</artifactId> |
33 | | - <version>3.2.4</version> |
| 33 | + <version>3.6.0</version> |
34 | 34 | <configuration> |
35 | 35 | <relocations> |
| 36 | + <relocation> |
| 37 | + <pattern>com.technicjelle.UpdateChecker</pattern> |
| 38 | + <shadedPattern>com.technicjelle.bluemapplayercontrol.shadow.UpdateChecker</shadedPattern> |
| 39 | + </relocation> |
36 | 40 | <relocation> |
37 | 41 | <pattern>org.bstats</pattern> |
38 | | - <shadedPattern>com.technicjelle.bluemapplayercontrol</shadedPattern> |
| 42 | + <shadedPattern>com.technicjelle.bluemapplayercontrol.shadow.bstats</shadedPattern> |
39 | 43 | </relocation> |
40 | 44 | </relocations> |
41 | 45 | </configuration> |
|
62 | 66 |
|
63 | 67 | <repositories> |
64 | 68 | <repository> |
65 | | - <id>papermc-repo</id> |
| 69 | + <id>papermc</id> |
66 | 70 | <url>https://repo.papermc.io/repository/maven-public/</url> |
67 | 71 | </repository> |
68 | 72 | <repository> |
69 | 73 | <id>sonatype</id> |
70 | 74 | <url>https://oss.sonatype.org/content/groups/public/</url> |
71 | 75 | </repository> |
72 | 76 | <repository> |
73 | | - <id>jitpack.io</id> |
74 | | - <url>https://jitpack.io</url> |
| 77 | + <id>bluecolored-releases</id> |
| 78 | + <name>BlueColored Repository</name> |
| 79 | + <url>https://repo.bluecolored.de/releases</url> |
75 | 80 | </repository> |
76 | 81 | </repositories> |
77 | 82 |
|
78 | 83 | <dependencies> |
79 | 84 | <dependency> |
80 | | - <groupId>com.github.TechnicJelle</groupId> |
81 | | - <artifactId>UpdateCheckerJava</artifactId> |
82 | | - <version>v2.3</version> |
| 85 | + <groupId>com.technicjelle</groupId> |
| 86 | + <artifactId>UpdateChecker</artifactId> |
| 87 | + <version>2.5.1</version> |
| 88 | + <scope>compile</scope> |
83 | 89 | </dependency> |
84 | 90 | <dependency> |
85 | 91 | <groupId>com.destroystokyo.paper</groupId> |
|
88 | 94 | <scope>provided</scope> |
89 | 95 | </dependency> |
90 | 96 | <dependency> |
91 | | - <groupId>com.github.BlueMap-Minecraft</groupId> |
92 | | - <artifactId>BlueMapAPI</artifactId> |
93 | | - <version>v2.6.1</version> |
| 97 | + <groupId>de.bluecolored</groupId> |
| 98 | + <artifactId>bluemap-api</artifactId> |
| 99 | + <version>2.7.3</version> |
94 | 100 | <scope>provided</scope> |
95 | 101 | </dependency> |
96 | 102 | <dependency> |
|
102 | 108 | <dependency> |
103 | 109 | <groupId>org.bstats</groupId> |
104 | 110 | <artifactId>bstats-bukkit</artifactId> |
105 | | - <version>3.0.2</version> |
| 111 | + <version>3.1.0</version> |
106 | 112 | <scope>compile</scope> |
107 | 113 | </dependency> |
108 | 114 | </dependencies> |
|
0 commit comments