34 lines
923 B
Groovy
Executable File
34 lines
923 B
Groovy
Executable File
plugins {
|
|
id 'java'
|
|
id 'org.springframework.boot' version '4.0.7'
|
|
id 'io.spring.dependency-management' version '1.1.7'
|
|
}
|
|
|
|
group = 'de.thpeetz.kontor'
|
|
version = '0.3.0-SNAPSHOT'
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(21)
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.springframework.boot:spring-boot-starter-actuator'
|
|
implementation 'org.springframework.boot:spring-boot-starter-artemis'
|
|
implementation 'org.springframework.boot:spring-boot-starter-webmvc'
|
|
implementation 'org.apache.camel.springboot:camel-spring-boot-starter:4.20.0'
|
|
runtimeOnly 'io.micrometer:micrometer-registry-prometheus'
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-artemis-test'
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-webmvc-test'
|
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
|
}
|
|
|
|
tasks.named('test') {
|
|
useJUnitPlatform()
|
|
}
|