Skip to content

Commit 26b7c9d

Browse files
committed
fix: build error
1 parent 52a1288 commit 26b7c9d

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -53,23 +53,23 @@
5353
<relocations>
5454
<relocation>
5555
<pattern>com.cryptomorin.xseries</pattern>
56-
<shadedPattern>me.refracdevelopment.libs.xseries</shadedPattern>
56+
<shadedPattern>me.refracdevelopment.simpletags.libs.xseries</shadedPattern>
5757
</relocation>
5858
<relocation>
59-
<pattern>com.alessiodp.libby</pattern>
60-
<shadedPattern>me.refracdevelopment.libs.libby</shadedPattern>
59+
<pattern>net.byteflux.libby</pattern>
60+
<shadedPattern>me.refracdevelopment.simpletags.libs.libby</shadedPattern>
6161
</relocation>
6262
<relocation>
6363
<pattern>me.gabytm.util.actions</pattern>
64-
<shadedPattern>me.refracdevelopment.libs.actions</shadedPattern>
64+
<shadedPattern>me.refracdevelopment.simpletags.libs.actions</shadedPattern>
6565
</relocation>
6666
<relocation>
6767
<pattern>org.bstats</pattern>
68-
<shadedPattern>me.refracdevelopment.libs.bstats</shadedPattern>
68+
<shadedPattern>me.refracdevelopment.simpletags.libs.bstats</shadedPattern>
6969
</relocation>
7070
<relocation>
7171
<pattern>com.tcoded.folialib</pattern>
72-
<shadedPattern>me.refracdevelopment.libs.folialib</shadedPattern>
72+
<shadedPattern>me.refracdevelopment.simpletags.libs.folialib</shadedPattern>
7373
</relocation>
7474
<relocation>
7575
<pattern>net.kyori.adventure.text.minimessage</pattern>
@@ -166,7 +166,7 @@
166166
<dependency>
167167
<groupId>ca.tweetzy</groupId>
168168
<artifactId>skulls</artifactId>
169-
<version>v3.23.0</version>
169+
<version>3.10.0</version>
170170
<scope>provided</scope>
171171
<exclusions>
172172
<exclusion>
@@ -176,9 +176,9 @@
176176
</exclusions>
177177
</dependency>
178178
<dependency>
179-
<groupId>com.alessiodp.libby</groupId>
179+
<groupId>net.byteflux</groupId>
180180
<artifactId>libby-bukkit</artifactId>
181-
<version>2.0.0-SNAPSHOT</version>
181+
<version>1.3.1</version>
182182
</dependency>
183183
<dependency>
184184
<groupId>org.mariadb.jdbc</groupId>

src/main/java/me/refracdevelopment/simpletags/utilities/DownloadUtil.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package me.refracdevelopment.simpletags.utilities;
22

3-
import com.alessiodp.libby.BukkitLibraryManager;
4-
import com.alessiodp.libby.Library;
3+
import net.byteflux.libby.BukkitLibraryManager;
4+
import net.byteflux.libby.Library;
55
import org.bukkit.plugin.java.JavaPlugin;
66

77
public class DownloadUtil {
@@ -24,7 +24,7 @@ public static void downloadAndEnable(JavaPlugin plugin) {
2424
Library lib3 = Library.builder()
2525
.groupId("org{}xerial") // "{}" is replaced with ".", useful to avoid unwanted changes made by maven-shade-plugin
2626
.artifactId("sqlite-jdbc")
27-
.version("3.51.1.0")
27+
.version("3.51.2.0")
2828
.build();
2929
Library lib4 = Library.builder()
3030
.groupId("com{}zaxxer") // "{}" is replaced with ".", useful to avoid unwanted changes made by maven-shade-plugin

0 commit comments

Comments
 (0)