27 lines
573 B
Groovy
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'
|
|
}
|
|
} |