Files
kontor/integration/build.gradle
T
tpeetz 567e254840
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 10s
add kontor-data to extract data model
2026-08-10 22:49:46 +02:00

52 lines
1.6 KiB
Groovy
Executable File

plugins {
id 'java'
id 'org.springframework.boot' version '4.0.7'
id 'io.spring.dependency-management' version '1.1.7'
alias(libs.plugins.lombok)
}
group = 'de.thpeetz.kontor'
version = '0.3.0-SNAPSHOT'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
repositories {
mavenCentral()
maven { setUrl("https://repo.spring.io/milestone") }
}
dependencyManagement {
imports {
mavenBom libs.camel.bom.get().toString()
}
}
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.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.apache.camel.springboot:camel-spring-boot-starter:4.20.0'
implementation 'org.apache.camel.springboot:camel-jms-starter'
implementation 'io.micrometer:micrometer-registry-prometheus'
implementation 'org.apache.activemq:artemis-jakarta-client'
implementation 'org.postgresql:postgresql'
implementation libs.jackson
implementation libs.gson
runtimeOnly 'io.micrometer:micrometer-registry-prometheus'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.apache.camel:camel-test-spring-junit5'
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()
}