73 lines
1.9 KiB
Groovy
73 lines
1.9 KiB
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
maven {
|
|
url = 'https://repo.runelite.net'
|
|
content {
|
|
includeGroupByRegex("net\\.runelite.*")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
}
|
|
|
|
def runeLiteVersion = 'latest.release'
|
|
|
|
dependencies {
|
|
compileOnly group: 'net.runelite', name: 'client', version: runeLiteVersion
|
|
|
|
compileOnly 'org.projectlombok:lombok:1.18.20'
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.20'
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
testImplementation group: 'net.runelite', name: 'client', version: runeLiteVersion
|
|
testImplementation group: 'net.runelite', name: 'jshell', version: runeLiteVersion
|
|
}
|
|
|
|
group = 'com.toofifty'
|
|
version = '1.0.11'
|
|
|
|
tasks.withType(JavaCompile).configureEach {
|
|
options.encoding = 'UTF-8'
|
|
options.release.set(11)
|
|
}
|
|
|
|
tasks.register('shadowJar', Jar) {
|
|
dependsOn configurations.testRuntimeClasspath
|
|
manifest {
|
|
attributes('Main-Class':
|
|
'com.toofifty.easygiantsfoundry.EasyGiantsFoundryPluginTest',
|
|
'Multi-Release': true)
|
|
}
|
|
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
|
from sourceSets.main.output
|
|
from sourceSets.test.output
|
|
from {
|
|
configurations.testRuntimeClasspath.collect { file ->
|
|
file.isDirectory() ? file : zipTree(file)
|
|
}
|
|
}
|
|
|
|
exclude 'META-INF/INDEX.LIST'
|
|
exclude 'META-INF/*.SF'
|
|
exclude 'META-INF/*.DSA'
|
|
exclude 'META-INF/*.RSA'
|
|
exclude '**/module-info.class'
|
|
|
|
group = BasePlugin.BUILD_GROUP
|
|
archiveClassifier.set('shadow')
|
|
archiveFileName.set("${rootProject.name}-${project.version}-all.jar")
|
|
}
|
|
|
|
|
|
task runClient(type: JavaExec) {
|
|
group = 'application'
|
|
description = 'Run the PluginTester main class to launch RuneLite with plugins'
|
|
classpath = sourceSets.test.runtimeClasspath
|
|
mainClass = 'com.toofifty.easygiantsfoundry.EasyGiantsFoundryPluginTest'
|
|
jvmArgs '-ea'
|
|
}
|