24 lines
590 B
Groovy
24 lines
590 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'de.clkl.satisfactory'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.2'
|
|
implementation 'org.jgrapht:jgrapht-io:1.5.1'
|
|
implementation 'guru.nidi:graphviz-java:0.18.1'
|
|
implementation 'org.graalvm.js:js:20.0.0'
|
|
implementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.13.0'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |