52 lines
1.9 KiB
Groovy
52 lines
1.9 KiB
Groovy
group = 'net.runelite.rs'
|
|
description = 'Injector'
|
|
|
|
def osrsRevision = 181
|
|
def rootPath = project.rootDir.toString().replace('\\', '/')
|
|
def buildPath = project.buildDir.toString().replace('\\', '/')
|
|
def deobfuscatedJar = "${rootPath}/runescape-client/build/libs/rs-client-${project.version}.jar"
|
|
def vanillaJar = "${buildPath}/vanilla-${osrsRevision}.jar"
|
|
def injectedJar = "${rootPath}/injected-client/build/libs/injected-client-${project.version}.jar"
|
|
|
|
configurations {
|
|
vanilla
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':deobfuscator')
|
|
implementation project(':mixins')
|
|
implementation project(':runelite-api')
|
|
implementation project(':runescape-api')
|
|
implementation project(':injected-client')
|
|
implementation group: 'com.google.guava', name: 'guava', version: '28.0-jre'
|
|
implementation group: 'org.apache.maven', name: 'maven-plugin-api', version: '3.6.1'
|
|
implementation group: 'org.ow2.asm', name: 'asm-debug-all', version: '5.2'
|
|
testImplementation project(':deobfuscator')
|
|
testImplementation group: 'junit', name: 'junit', version: '4.12'
|
|
testImplementation group: 'org.mockito', name: 'mockito-all', version: '1.10.19'
|
|
compileOnly group: 'org.apache.maven.plugin-tools', name: 'maven-plugin-annotations', version: '3.6.0'
|
|
annotationProcessor group: 'org.eclipse.sisu', name: 'org.eclipse.sisu.inject', version: '0.3.3'
|
|
vanilla "net.runelite.rs:vanilla:"+osrsRevision
|
|
}
|
|
|
|
compileJava {
|
|
dependsOn ":rs-client:build"
|
|
}
|
|
|
|
compileJava.outputs.upToDateWhen {false}
|
|
|
|
compileJava.doLast() {
|
|
copy {
|
|
from configurations.vanilla
|
|
into "$buildDir"
|
|
}
|
|
def path = sourceSets.main.runtimeClasspath
|
|
def loader = new URLClassLoader(path.collect { f -> f.toURL() } as URL[])
|
|
def inject = loader.loadClass('net.runelite.injector.Injector')
|
|
String[] jarPaths = [
|
|
deobfuscatedJar.toString(),
|
|
vanillaJar.toString(),
|
|
injectedJar.toString()
|
|
]
|
|
inject.main(jarPaths)
|
|
} |