Files
NeuroDock/Display/build.gradle
T
Zacharias 7dfaffc862
build / build (push) Has been cancelled
Working on fixing the implementation of PythonRunner.java
added a global cache directory, not fully properly implemented, and dose not respect t.ex the FreeDesktop specifications for cache directories and files

OPS this is a partial commit! things might not add up on this commit.
2026-05-04 18:17:15 +02: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.7.1")
implementation("com.github.docker-java:docker-java-transport-httpclient5:3.7.1")
}
test {
useJUnitPlatform()
}
jar{
manifest {
attributes 'Main-Class': 'me.zacharias.chat.display.Main'
}
}