Alter some variables
Some checks are pending
Java CI with Gradle / build (push) Waiting to run

This commit is contained in:
zontreck 2024-07-12 04:20:20 -07:00
parent 0586411b2e
commit ffa17a36af

View file

@ -8,22 +8,25 @@ repositories {
dirs "libs" dirs "libs"
} }
maven { maven {
url "https://mcphackers.github.io/libraries/" url "https://libraries.minecraft.net/"
} }
maven { maven {
url "https://libraries.minecraft.net/" url "https://maven.zontreck.com/repository/internal"
}
maven {
url "https://maven.zontreck.com/repository/zontreck"
} }
mavenCentral() mavenCentral()
} }
group = 'org.mcphackers' group = 'dev.zontreck'
archivesBaseName = 'launchwrapper' archivesBaseName = 'launchwrapper'
version = '1.0-SNAPSHOT' version = '1.0-SNAPSHOT'
sourceCompatibility = 1.5 sourceCompatibility = 1.5
targetCompatibility = 1.5 targetCompatibility = 1.5
dependencies { dependencies {
implementation 'org.mcphackers.rdi:rdi:1.0' implementation 'dev.zontreck:RetroDebugInjector:1.0'
implementation 'org.ow2.asm:asm:9.3' implementation 'org.ow2.asm:asm:9.3'
implementation 'org.ow2.asm:asm-tree:9.3' implementation 'org.ow2.asm:asm-tree:9.3'
implementation 'org.json:json:20230311' implementation 'org.json:json:20230311'