mirror of
https://github.com/array-in-a-matrix/brainwine.git
synced 2025-04-02 11:11:58 -04:00
20 lines
484 B
Groovy
20 lines
484 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3'
|
|
api 'org.apache.logging.log4j:log4j-core:2.18.0'
|
|
api 'com.fasterxml.jackson.core:jackson-databind:2.13.3'
|
|
api 'org.apache.logging.log4j:log4j-api:2.18.0'
|
|
api 'commons-validator:commons-validator:1.7'
|
|
api 'org.apache.commons:commons-text:1.9'
|
|
}
|
|
|
|
jar {
|
|
archiveBaseName = 'brainwine-shared'
|
|
}
|