plugins {
|
id 'io.franzbecker.gradle-lombok' version '1.14'
|
id 'java'
|
}
|
|
description = 'borgbutler-core'
|
|
dependencies {
|
compile group: 'commons-io', name: 'commons-io', version: '2.6'
|
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.8.1'
|
compile group: 'org.apache.commons', name: 'commons-exec', version: '1.3'
|
compile group: 'org.apache.commons', name: 'commons-collections4', version: '4.2'
|
compile group: 'org.apache.commons', name: 'commons-compress', version: '1.18'
|
compile group: 'org.apache.commons', name: 'commons-jcs-core', version: '2.2.1'
|
|
|
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.6'
|
compile group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.9.6'
|
|
compileOnly "org.projectlombok:lombok:1.18.4"
|
testCompileOnly "org.projectlombok:lombok:1.18.4"
|
}
|
|
repositories {
|
mavenCentral()
|
jcenter()
|
}
|
|
lombok {
|
version = '1.18.4'
|
sha256 = "" // skip verifyLombok task
|
}
|
|
test {
|
// set heap size for the test JVM(s)
|
minHeapSize = "128m"
|
maxHeapSize = "1500m"
|
}
|