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'
|
||||
|
||||
dependencies {
|
||||
compileOnly group: 'net.runelite', name:'client', version: runeLiteVersion
|
||||
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
|
||||
testImplementation group: 'net.runelite', name: 'client', version: runeLiteVersion
|
||||
testImplementation group: 'net.runelite', name: 'jshell', version: runeLiteVersion
|
||||
}
|
||||
|
||||
group = 'com.toofifty'
|
||||
@@ -37,7 +37,9 @@ tasks.withType(JavaCompile).configureEach {
|
||||
tasks.register('shadowJar', Jar) {
|
||||
dependsOn configurations.testRuntimeClasspath
|
||||
manifest {
|
||||
attributes('Main-Class': 'com.toofifty.easygiantsfoundry.EasyGiantsFoundryPluginTest', 'Multi-Release': true)
|
||||
attributes('Main-Class':
|
||||
'com.toofifty.easygiantsfoundry.EasyGiantsFoundryPluginTest',
|
||||
'Multi-Release': true)
|
||||
}
|
||||
|
||||
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
||||
|
||||
Reference in New Issue
Block a user