-
Notifications
You must be signed in to change notification settings - Fork 12
/
build.gradle
43 lines (35 loc) · 898 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
* This file was generated by the Gradle 'init' task.
*
* This project uses @Incubating APIs which are subject to change.
*/
plugins {
id 'java'
id 'idea'
}
repositories {
mavenLocal()
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
}
group = 'de.scimeda.keycloak'
version = '0.0.1-SNAPSHOT'
description = 'last-login-event-listener'
ext {
keycloakVersion = "24.0.2"
}
dependencies {
implementation "org.keycloak:keycloak-core:${keycloakVersion}"
implementation "org.keycloak:keycloak-server-spi:${keycloakVersion}"
implementation "org.keycloak:keycloak-server-spi-private:${keycloakVersion}"
implementation "org.keycloak:keycloak-services:${keycloakVersion}"
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8'
}