gradle: processTestResources

This commit is contained in:
Owain van Brakel
2019-07-27 07:24:22 +02:00
parent 8d1489254f
commit 0a4daac223
5 changed files with 47 additions and 8 deletions

View File

@@ -2,9 +2,11 @@ group = 'net.runelite.rs'
description = 'Injector'
def osrsRevision = 181
def deobfuscatedJar = [project.rootDir, 'runescape-client', 'build', 'libs', "rs-client-${project.version}.jar"].join(File.separator)
def vanillaJar = [project.buildDir, "vanilla-${osrsRevision}.jar"].join(File.separator)
def injectedJar = [project.rootDir, 'injected-client', 'build', 'libs', "injected-client-${project.version}.jar"].join(File.separator)
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