-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (34 loc) · 1.32 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
plugins {
id 'war'
id "io.openliberty.tools.gradle.Liberty" version "3.8.1"
id 'wrapper'
id 'checkstyle'
}
repositories {
mavenCentral()
}
dependencies {
compileOnly platform('org.eclipse.microprofile:microprofile:5.0')
compileOnly 'jakarta.platform:jakarta.jakartaee-api:10.0.0'
compileOnly 'org.eclipse.microprofile.reactive.messaging:microprofile-reactive-messaging-api:3.0'
compileOnly 'org.eclipse.microprofile.reactive-streams-operators:microprofile-reactive-streams-operators-api:3.0'
compileOnly 'org.eclipse.microprofile.openapi:microprofile-openapi-api:3.0'
implementation 'org.apache.kafka:kafka-clients:3.5.1'
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}
liberty {
// Set this to your open-liberty workspace /dev/build.image/wlp
//installDir = "C:\\Users\\101556866\\Downloads\\wlp-abutch3r-27251-20240103-0520\\wlp"
//installDir = "C:\\Users\\101556866\\IBM\\openliberty\\open-liberty\\dev\\build.image\\wlp"
server {
name = "ReactiveMessaging30Demo"
configDirectory = file("src/main/liberty/config") // workaround to ensure config files are always copied OpenLiberty/ci.gradle#686
features {
acceptLicense = true
}
}
}