25 lines
697 B
Groovy
25 lines
697 B
Groovy
plugins {
|
|
id "java-platform"
|
|
}
|
|
|
|
javaPlatform {
|
|
allowDependencies()
|
|
}
|
|
|
|
dependencies {
|
|
api platform("org.springframework:spring-framework-bom:$springFrameworkVersion")
|
|
api platform("org.springframework.security:spring-security-bom:$springSecurityVersion")
|
|
api platform("com.fasterxml.jackson:jackson-bom:2.13.3")
|
|
constraints {
|
|
api "com.nimbusds:nimbus-jose-jwt:9.22"
|
|
api "javax.servlet:javax.servlet-api:4.0.1"
|
|
api "junit:junit:4.13.2"
|
|
api "org.assertj:assertj-core:3.22.0"
|
|
api "org.mockito:mockito-core:4.5.1"
|
|
api "com.squareup.okhttp3:mockwebserver:4.9.3"
|
|
api "com.squareup.okhttp3:okhttp:4.9.3"
|
|
api "com.jayway.jsonpath:json-path:2.7.0"
|
|
api "org.hsqldb:hsqldb:2.5.2"
|
|
}
|
|
}
|