29 lines
445 B
Groovy
29 lines
445 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'java-library'
|
|
id 'org.springframework.boot' version '2.6.4'
|
|
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
|
|
}
|
|
|
|
group 'com.github.deogicorgi.reactive'
|
|
version '0.0.1-SNAPSHOT'
|
|
|
|
bootJar {
|
|
enabled = false
|
|
}
|
|
|
|
jar {
|
|
enabled = true
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.fasterxml.jackson.core:jackson-annotations'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |