-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
64 lines (45 loc) · 1.55 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
plugins {
id 'java'
id 'io.quarkus'
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}")
// um das application.properties in yaml zu definieren
implementation 'io.quarkus:quarkus-config-yaml'
// to enable logging - but I can't use SLF4J inside code!?!
implementation 'io.quarkus:quarkus-logging-gelf'
// implementation 'org.jboss.logmanager:log4j2-jboss-logmanager'
// use spring-boot injection for properties - but it's not really
// working inside tests.
implementation 'io.quarkus:quarkus-spring-boot-properties'
implementation 'io.quarkus:quarkus-resteasy'
// for implementing kubernetes operators
// implementation 'io.quarkus:quarkus-kubernetes-client'
// to manipulate keycloak
// implementation 'io.quarkus:quarkus-keycloak-admin-client'
// implementation 'io.quarkus:quarkus-keycloak-authorization'
// junit5 testing
testImplementation 'io.quarkus:quarkus-junit5'
// to create rest services
testImplementation 'io.rest-assured:rest-assured'
}
group 'de.bls19.playing.quarkus'
version '0.0.1-SNAPSHOT'
compileJava {
options.encoding = 'UTF-8'
options.compilerArgs << '-parameters'
}
compileTestJava {
options.encoding = 'UTF-8'
}
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
test {
systemProperty "java.util.logging.manager", "org.jboss.logmanager.LogManager"
}