-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
47 lines (38 loc) · 1.39 KB
/
build.gradle.kts
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
import org.gradle.api.tasks.testing.logging.TestLogEvent.FAILED
import org.gradle.api.tasks.testing.logging.TestLogEvent.PASSED
import org.gradle.api.tasks.testing.logging.TestLogEvent.SKIPPED
plugins {
java
id("org.springframework.boot") version "3.4.0"
id("io.spring.dependency-management") version "1.1.6"
id("org.jlleitschuh.gradle.ktlint") version "12.1.2"
}
group = "com.rogervinas"
version = "0.0.1-SNAPSHOT"
repositories {
mavenCentral()
}
val artemisVersion = "2.38.0"
dependencies {
implementation(platform("org.apache.camel.springboot:camel-spring-boot-dependencies:4.8.1"))
implementation("org.apache.camel.springboot:camel-spring-boot-starter")
implementation("org.apache.camel.springboot:camel-jms-starter")
implementation("org.apache.activemq:artemis-commons:$artemisVersion")
implementation("org.apache.activemq:artemis-selector:$artemisVersion")
implementation("org.apache.activemq:artemis-core-client:$artemisVersion")
implementation("org.apache.activemq:artemis-jakarta-client:$artemisVersion")
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("org.awaitility:awaitility:4.2.2")
testImplementation("org.testcontainers:junit-jupiter:1.20.4")
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
tasks.withType<Test> {
useJUnitPlatform()
testLogging {
events(PASSED, SKIPPED, FAILED)
}
}