mirror of
https://github.com/array-in-a-matrix/brainwine.git
synced 2025-04-02 11:11:58 -04:00
17 lines
268 B
Groovy
17 lines
268 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'io.javalin:javalin:4.6.4'
|
|
implementation 'org.slf4j:slf4j-simple:1.8.0-beta4'
|
|
implementation project(':shared')
|
|
}
|
|
|
|
jar {
|
|
archiveBaseName = 'brainwine-api'
|
|
}
|