Wrap 120 characters in gradle file

This commit is contained in:
pww918
2024-11-20 18:47:27 +04:00
parent 5dc8e78f26
commit deb247d09a

View File

@@ -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