mirror of
https://github.com/array-in-a-matrix/brainwine.git
synced 2025-04-02 11:11:58 -04:00
19 lines
No EOL
398 B
Groovy
19 lines
No EOL
398 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.apache.logging.log4j:log4j-api:2.15.0'
|
|
implementation 'io.javalin:javalin:3.13.0'
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.1'
|
|
implementation 'org.slf4j:slf4j-simple:1.8.0-beta4'
|
|
implementation project(':shared')
|
|
}
|
|
|
|
jar {
|
|
archiveBaseName = 'brainwine-api'
|
|
} |