Files
i377/build.gradle
2018-10-07 16:23:51 +03:00

29 lines
529 B
Groovy

plugins {
id 'war'
id 'org.gretty' version '2.2.0'
id 'io.franzbecker.gradle-lombok' version '1.14'
}
repositories {
jcenter()
mavenCentral()
}
sourceCompatibility = 10
dependencies {
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.7'
compileOnly 'javax.servlet:javax.servlet-api:4.0.1'
}
gretty {
contextPath = '/'
}
lombok {
version = '1.18.2'
sha256 = ""
}