f50c04c828
build / build (push) Has been cancelled
- Renamed package from me.zacharias.chat to me.neurodock across all 8 modules - Updated Gradle group from me.zacharias.neurodock to me.neurodock - Updated README and other files to reflect new Gitea org URL (Chat_things → neurodock) Dev note: 95 files touched. The Great Refactor is complete, long may it rest.
32 lines
667 B
Groovy
32 lines
667 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
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'
|
|
}
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(javaVersion)) // Set Java version
|
|
}
|
|
} |