Merge pull request #42 from Toofifty/patch-gradle
Wrap 120 characters in gradle file
This commit is contained in:
10
build.gradle
10
build.gradle
@@ -16,14 +16,14 @@ repositories {
|
|||||||
def runeLiteVersion = 'latest.release'
|
def runeLiteVersion = 'latest.release'
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compileOnly group: 'net.runelite', name:'client', version: runeLiteVersion
|
compileOnly group: 'net.runelite', name: 'client', version: runeLiteVersion
|
||||||
|
|
||||||
compileOnly 'org.projectlombok:lombok:1.18.20'
|
compileOnly 'org.projectlombok:lombok:1.18.20'
|
||||||
annotationProcessor 'org.projectlombok:lombok:1.18.20'
|
annotationProcessor 'org.projectlombok:lombok:1.18.20'
|
||||||
|
|
||||||
testImplementation 'junit:junit:4.12'
|
testImplementation 'junit:junit:4.12'
|
||||||
testImplementation group: 'net.runelite', name:'client', version: runeLiteVersion
|
testImplementation group: 'net.runelite', name: 'client', version: runeLiteVersion
|
||||||
testImplementation group: 'net.runelite', name:'jshell', version: runeLiteVersion
|
testImplementation group: 'net.runelite', name: 'jshell', version: runeLiteVersion
|
||||||
}
|
}
|
||||||
|
|
||||||
group = 'com.toofifty'
|
group = 'com.toofifty'
|
||||||
@@ -37,7 +37,9 @@ tasks.withType(JavaCompile).configureEach {
|
|||||||
tasks.register('shadowJar', Jar) {
|
tasks.register('shadowJar', Jar) {
|
||||||
dependsOn configurations.testRuntimeClasspath
|
dependsOn configurations.testRuntimeClasspath
|
||||||
manifest {
|
manifest {
|
||||||
attributes('Main-Class': 'com.toofifty.easygiantsfoundry.EasyGiantsFoundryPluginTest', 'Multi-Release': true)
|
attributes('Main-Class':
|
||||||
|
'com.toofifty.easygiantsfoundry.EasyGiantsFoundryPluginTest',
|
||||||
|
'Multi-Release': true)
|
||||||
}
|
}
|
||||||
|
|
||||||
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
||||||
|
|||||||
Reference in New Issue
Block a user