Skip to content

Commit

Permalink
Fixed 1.20.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ToberoCat committed Nov 15, 2023
1 parent 1ab49f9 commit c42461d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
18 changes: 16 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.github.toberocat</groupId>
<artifactId>gui-engine</artifactId>
<version>1.4.1</version>
<version>1.4.2</version>
<packaging>jar</packaging>
<properties>
<maven.compiler.source>16</maven.compiler.source>
Expand All @@ -19,7 +19,7 @@
<commons.text.version>1.10.0</commons.text.version>
<jetbrains.annotations.version>23.0.0</jetbrains.annotations.version>
<spigot.api.version>1.18.1-R0.1-SNAPSHOT</spigot.api.version>
<toberocore.version>8c6baa37e4</toberocore.version>
<toberocore.version>be356f9253</toberocore.version>
<kotlin.version>1.9.10</kotlin.version>
<org.slf4j.version>1.7.5</org.slf4j.version>

Expand Down Expand Up @@ -49,6 +49,10 @@
<id>placeholderapi</id>
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
</repository>
<repository>
<id>minecraft-repo</id>
<url>https://libraries.minecraft.net/</url>
</repository>
</repositories>

<dependencies>
Expand All @@ -62,6 +66,12 @@
<artifactId>ToberoCore</artifactId>
<version>${toberocore.version}</version>
</dependency>
<dependency>
<groupId>com.mojang</groupId>
<artifactId>authlib</artifactId>
<version>3.17.30</version>
<scope>provided</scope>
</dependency>
<!-- Jackson -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
Expand Down Expand Up @@ -190,6 +200,10 @@
<pattern>com.jeff_media.updatechecker</pattern>
<shadedPattern>io.github.toberocat.guiengine.updatechecker</shadedPattern>
</relocation>
<relocation>
<pattern>io.github.toberocat.toberocore</pattern>
<shadedPattern>io.github.toberocat.guiengine.toberocore</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ import org.bukkit.plugin.java.JavaPlugin
import java.io.File
import java.util.concurrent.TimeUnit


const val SPIGOT_RESOURCE_ID = 109983

/**
Expand Down

0 comments on commit c42461d

Please sign in to comment.