27 lines
580 B
Groovy
27 lines
580 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'com.github.johnrengelman.shadow' version '5.2.0'
|
|
}
|
|
|
|
group 'tech.nevets.autoupdater'
|
|
version '0.1.0'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.sparkjava:spark-core:2.9.4'
|
|
implementation 'org.slf4j:slf4j-simple:2.0.3'
|
|
implementation 'com.google.code.gson:gson:2.10'
|
|
implementation 'commons-io:commons-io:2.11.0'
|
|
implementation 'com.github.docker-java:docker-java:3.2.13'
|
|
}
|
|
|
|
shadowJar {
|
|
manifest {
|
|
attributes(
|
|
'Main-Class': 'tech.nevets.autoupdater.Main'
|
|
)
|
|
}
|
|
} |