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() }