40 lines
988 B
Groovy
40 lines
988 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'org.springframework.boot' version '2.7.9'
|
|
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
|
|
}
|
|
|
|
group = 'com.kiz'
|
|
version = '0.0.1-SNAPSHOT'
|
|
sourceCompatibility = '17'
|
|
|
|
configurations {
|
|
compileOnly {
|
|
extendsFrom annotationProcessor
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
bootJar {
|
|
enabled = false
|
|
}
|
|
|
|
jar {
|
|
enabled = true
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.springframework.boot:spring-boot-starter'
|
|
implementation 'com.fasterxml.jackson.core:jackson-core:2.14.2'
|
|
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.14.2'
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind:2.14.2'
|
|
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.14.2'
|
|
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.14.2'
|
|
implementation 'com.fasterxml.jackson.module:jackson-module-parameter-names:2.14.2'
|
|
compileOnly 'org.projectlombok:lombok'
|
|
annotationProcessor 'org.projectlombok:lombok'
|
|
}
|