Configurator/build.gradle

24 lines
489 B
Groovy

plugins {
id 'java'
}
group = 'app.simplexdev'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.jetbrains:annotations:24.0.0'
implementation 'com.google.code.gson:gson:2.10'
implementation 'org.yaml:snakeyaml:2.0'
implementation 'com.moandjiezana.toml:toml4j:0.7.2'
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}