AutoUpdater/build.gradle
2022-11-21 11:13:46 -05:00

19 lines
441 B
Groovy

plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '5.2.0'
}
group 'tech.nevets'
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'
}