feat: some basic poc
This commit is contained in:
commit
48b0cace8a
10 changed files with 580 additions and 0 deletions
24
build.gradle.kts
Normal file
24
build.gradle.kts
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
plugins {
|
||||
id("java")
|
||||
}
|
||||
|
||||
group = "org.example"
|
||||
version = "1.0-SNAPSHOT"
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation("org.keycloak:keycloak-core:26.6.3")
|
||||
implementation("org.keycloak:keycloak-services:26.6.3")
|
||||
implementation("org.keycloak:keycloak-server-spi:26.6.3")
|
||||
testImplementation(platform("org.junit:junit-bom:6.0.0"))
|
||||
testImplementation("org.junit.jupiter:junit-jupiter")
|
||||
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
|
||||
|
||||
}
|
||||
|
||||
tasks.test {
|
||||
useJUnitPlatform()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue