[CHANGE] Change Jar-Relocator to our fork to allow directory remapping

This commit is contained in:
2023-11-05 18:12:38 +02:00
parent a9b46c9ffd
commit 3592fb04c0
3 changed files with 7 additions and 4 deletions

View File

@@ -26,6 +26,9 @@ configurations {
repositories {
mavenCentral()
maven {
url "https://maven.firstdark.dev/releases"
}
}
dependencies {
@@ -35,7 +38,7 @@ dependencies {
testCompileOnly "org.projectlombok:lombok:${lombok}"
testAnnotationProcessor "org.projectlombok:lombok:${lombok}"
shadeMe("me.lucko:jar-relocator:${jarrelocator}") {
shadeMe("com.hypherionmc:jar-relocator:${jarrelocator}") {
exclude group: 'org.ow2.asm'
}

View File

@@ -1,10 +1,10 @@
version_major=1
version_minor=0
version_patch=1
version_patch=2
maven_group=com.hypherionmc
# Dependencies
lombok=1.18.30
jarrelocator=1.5
jarrelocator=1.0.0
asm=9.3

View File

@@ -99,5 +99,5 @@ JarManager is licensed under the MIT License.
JarManager includes the following embedded libraries:
* [jar-relocator](https://github.com/lucko/jar-relocator) - Licensed under [Apache-2.0 License](https://github.com/lucko/jar-relocator/blob/master/LICENSE.txt)
* [jar-relocator](https://github.com/firstdarkdev/jar-relocator) A fork of the original with additional features - Licensed under [Apache-2.0 License](https://github.com/lucko/jar-relocator/blob/master/LICENSE.txt)
* [OW2 ASM](https://gitlab.ow2.org/asm/asm) - Licensed under [BSD 3-Clause License](https://gitlab.ow2.org/asm/asm/-/blob/master/LICENSE.txt?ref_type=heads)