Files
example-plugin/build.gradle
Max Weber af006a25a2 regenerate template plugin
from commit ec15cb82700a231edaece99e86c0c294d2150e15
2019-12-19 03:17:42 -07:00

35 lines
735 B
Groovy

plugins {
id 'java'
}
repositories {
mavenLocal()
maven {
url = 'http://repo.runelite.net'
}
mavenCentral()
}
def runeLiteVersion = '1.5.44-SNAPSHOT'
dependencies {
compileOnly group: 'net.runelite', name:'client', version: runeLiteVersion
compileOnly 'org.projectlombok:lombok:1.18.4'
annotationProcessor 'org.projectlombok:lombok:1.18.4'
testImplementation 'junit:junit:4.12'
testImplementation 'org.slf4j:slf4j-simple:1.7.12'
testImplementation group: 'net.runelite', name:'client', version: runeLiteVersion, {
exclude group: 'ch.qos.logback', module: 'logback-classic'
}
}
group = 'com.example'
version = '1.0-SNAPSHOT'
sourceCompatibility = '1.8'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}