smart-webhook/service/build.gradle

33 lines
856 B
Groovy
Raw Permalink Normal View History

2022-04-29 10:41:40 +03:00
springBoot {
// для использования со Spring Actuator: отображает в actuator/info информацию о приложении
buildInfo()
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.apache.camel.springboot:camel-spring-boot-starter:3.16.0'
implementation 'org.apache.camel:camel-jetty:3.16.0'
implementation 'org.apache.camel:camel-jackson:3.16.0'
implementation 'org.apache.camel:camel-http:3.16.0'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
tasks.named('test') {
useJUnitPlatform()
}