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