-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
56 lines (48 loc) · 1.75 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
plugins {
id 'java'
id 'io.quarkus'
}
group 'ch.retorte'
version '0.0.1-SNAPSHOT'
repositories {
mavenCentral()
mavenLocal()
}
tasks.processResources {
filesMatching("application.properties") {
filter { String line ->
line
.replace("CURRENT_VERSION", "$System.env.CURRENT_VERSION")
.replace("CURRENT_COMMIT", "$System.env.CURRENT_COMMIT")
}
}
}
dependencies {
implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}")
implementation 'io.quarkus:quarkus-resteasy-jaxb:${quarkusPlatformVersion}'
implementation 'io.quarkus:quarkus-resteasy-jsonb:${quarkusPlatformVersion}'
implementation 'io.quarkus:quarkus-websockets:${quarkusPlatformVersion}'
implementation 'io.quarkus:quarkus-arc:${quarkusPlatformVersion}'
implementation 'io.quarkus:quarkus-resteasy:${quarkusPlatformVersion}'
implementation 'io.quarkus:quarkus-quartz:${quarkusPlatformVersion}'
implementation 'io.quarkus:quarkus-jackson:${quarkusPlatformVersion}'
implementation 'io.quarkus:quarkus-builder:${quarkusPlatformVersion}'
implementation 'io.quarkus:quarkus-core-deployment:${quarkusPlatformVersion}'
implementation 'com.google.guava:guava:33.2.1-jre'
testImplementation 'io.quarkus:quarkus-junit5:${quarkusPlatformVersion}'
testImplementation 'io.rest-assured:rest-assured:5.4.0'
}
java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
test {
systemProperty "java.util.logging.manager", "org.jboss.logmanager.LogManager"
}
compileJava {
options.encoding = 'UTF-8'
options.compilerArgs << '-parameters'
}
compileTestJava {
options.encoding = 'UTF-8'
}