Files
NeuroDock/Display/build.gradle
Zacharias Zellén 943c8470a5
Some checks failed
build / build (push) Has been cancelled
Honestly speaking... No clue what the updates are :/
2026-01-17 14:30:26 +01:00

27 lines
573 B
Groovy

plugins {
id 'java'
}
group = 'me.zacharias'
version = '1.0-SNAPSHOT'
dependencies {
implementation project(":Core")
implementation project(":MALAPITool")
implementation project(":GeniusAPI")
implementation project(":API")
implementation project(":WikipediaTool")
implementation("com.github.docker-java:docker-java-core:3.6.0")
implementation("com.github.docker-java:docker-java-transport-httpclient5:3.6.0")
}
test {
useJUnitPlatform()
}
jar{
manifest {
attributes 'Main-Class': 'me.zacharias.chat.display.Main'
}
}