You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.1 KiB
38 lines
1.1 KiB
if (!project.hasProperty("springVersion")) { |
|
ext.springVersion = "5.3.+" |
|
} |
|
|
|
if (!project.hasProperty("springSecurityVersion")) { |
|
ext.springSecurityVersion = "5.5.0-M1" |
|
} |
|
|
|
if (!project.hasProperty("reactorVersion")) { |
|
ext.reactorVersion = "2020.0.+" |
|
} |
|
|
|
if (!project.hasProperty("locksDisabled")) { |
|
dependencyLocking { |
|
lockAllConfigurations() |
|
} |
|
} |
|
|
|
dependencyManagement { |
|
imports { |
|
mavenBom "org.springframework:spring-framework-bom:$springVersion" |
|
mavenBom "org.springframework.security:spring-security-bom:$springSecurityVersion" |
|
mavenBom "io.projectreactor:reactor-bom:$reactorVersion" |
|
mavenBom "com.fasterxml.jackson:jackson-bom:2.+" |
|
} |
|
|
|
dependencies { |
|
dependency "com.nimbusds:oauth2-oidc-sdk:latest.release" |
|
dependency "com.nimbusds:nimbus-jose-jwt:latest.release" |
|
dependency "javax.servlet:javax.servlet-api:4.+" |
|
dependency 'junit:junit:latest.release' |
|
dependency 'org.assertj:assertj-core:latest.release' |
|
dependency 'org.mockito:mockito-core:latest.release' |
|
dependency "com.squareup.okhttp3:mockwebserver:3.+" |
|
dependency "com.squareup.okhttp3:okhttp:3.+" |
|
dependency "com.jayway.jsonpath:json-path:2.+" |
|
} |
|
}
|
|
|