Files
sheepit-shadow-nabber/build.gradle

66 lines
1.4 KiB
Groovy
Raw Normal View History

2021-05-11 15:36:59 +00:00
plugins {
id 'java-library'
2022-01-03 10:52:03 +00:00
id 'com.github.johnrengelman.shadow' version '7.1.2'
2019-08-10 22:09:32 +02:00
}
2021-09-08 15:17:16 +02:00
sourceCompatibility = '1.11'
2021-09-08 13:14:12 +00:00
targetCompatibility = '1.11'
compileJava {
// Suppress warnings about internal api usage - https://stackoverflow.com/a/19553686/6238618
options.fork = true
options.forkOptions.executable = 'javac'
options.compilerArgs << '-XDignore.symbol.file'
}
shadowJar {
exclude 'OSGI-OPT/' // args4j garbage
}
2019-08-10 22:09:32 +02:00
repositories {
mavenCentral()
}
dependencies {
2021-12-13 17:40:29 +00:00
compileOnly 'org.projectlombok:lombok:1.18.22'
annotationProcessor 'org.projectlombok:lombok:1.18.22'
2021-05-11 15:36:59 +00:00
implementation 'args4j:args4j:2.33'
2021-12-13 17:40:29 +00:00
implementation 'net.lingala.zip4j:zip4j:2.9.1'
implementation 'net.java.dev.jna:jna-platform:5.9.0'
2022-01-03 10:52:03 +00:00
implementation 'com.github.oshi:oshi-core:5.8.6'
2021-05-11 15:36:59 +00:00
implementation 'org.simpleframework:simple-xml:2.7.1'
implementation 'javax.xml.bind:jaxb-api:2.3.1'
2022-01-03 10:52:03 +00:00
implementation 'com.formdev:flatlaf:1.6.5'
2021-12-13 17:40:29 +00:00
implementation 'com.squareup.okhttp3:okhttp:4.9.3'
implementation 'com.squareup.okhttp3:okhttp-urlconnection:4.9.3'
implementation 'org.slf4j:slf4j-nop:1.7.32'
2019-08-10 22:09:32 +02:00
}
jar {
manifest {
attributes "Main-Class": "com.sheepit.client.standalone.Worker"
}
from {
2021-05-11 15:36:59 +00:00
configurations.implementation.collect { it.isDirectory() ? it : zipTree(it) }
2019-08-10 22:09:32 +02:00
}
}
sourceSets {
main {
java {
srcDirs = ['src']
}
2019-08-11 22:25:26 +02:00
resources {
srcDirs = ['resources']
}
2019-08-10 22:09:32 +02:00
}
test {
java {
srcDirs = ['test']
}
}
}