Files
kontor/kontor-spring/integration/build.gradle
Thomas Peetz de2f2f34b2
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
setup multi-module project
2026-08-12 15:13:06 +02:00

45 lines
1.5 KiB
Groovy
Executable File

plugins {
id 'application'
alias(libs.plugins.spring.boot)
alias(libs.plugins.lombok)
}
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'
}
application {
mainClass = 'de.thpeetz.kontor.integration.IntegrationApplication'
}
bootRun {
args = ["--spring.profiles.active=${project.properties['profile'] ?: 'prod'}"]
}
tasks.named('test') {
useJUnitPlatform()
}