Skip to content
Snippets Groups Projects
Verified Commit 0047a9d6 authored by Ira ¯\_(ツ)_/¯'s avatar Ira ¯\_(ツ)_/¯
Browse files

Make it possible to set keycloak version via -P

parent 2ade2bc8
No related branches found
No related tags found
No related merge requests found
Pipeline #5881 passed
......@@ -35,10 +35,12 @@ repositories {
}
}
val keycloakVer: String? by project
dependencies {
val bouncyCastleVersion = "1.68"
val restassuredVersion = "4.3.3"
val keycloakVersion = "12.0.4"
val keycloakVersion = if (keycloakVer != null) keycloakVer else "12.0.4"
val javaxVersion = "2.0.1.Final"
val junitVersion = "4.13.2"
val hamcrestVersion = "2.2"
......@@ -110,4 +112,4 @@ tasks.register("checkFormat") {
tasks.register("checkStyle") {
dependsOn("checkstyleMain")
dependsOn("checkstyleTest")
}
\ No newline at end of file
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment