mirror of
https://github.com/hwanny1128/HGZero.git
synced 2025-12-06 14:56:23 +00:00
33 lines
811 B
Groovy
33 lines
811 B
Groovy
plugins {
|
|
id 'java-library'
|
|
id 'org.springframework.boot'
|
|
}
|
|
|
|
bootJar {
|
|
enabled = false
|
|
}
|
|
|
|
jar {
|
|
enabled = true
|
|
}
|
|
|
|
dependencies {
|
|
// Spring Boot
|
|
api 'org.springframework.boot:spring-boot-starter-web'
|
|
api 'org.springframework.boot:spring-boot-starter-data-jpa'
|
|
api 'org.springframework.boot:spring-boot-starter-security'
|
|
api 'org.springframework.boot:spring-boot-starter-validation'
|
|
api 'org.springframework.boot:spring-boot-starter-aop'
|
|
|
|
// JWT
|
|
api "io.jsonwebtoken:jjwt-api:${jjwtVersion}"
|
|
|
|
// Utilities
|
|
api "org.apache.commons:commons-lang3:${commonsLang3Version}"
|
|
api "commons-io:commons-io:${commonsIoVersion}"
|
|
|
|
// Jackson
|
|
api 'com.fasterxml.jackson.core:jackson-databind'
|
|
api 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
|
|
}
|