covid19-ru/covid19-scheduler/build.gradle

23 lines
807 B
Groovy
Raw Normal View History

2020-04-15 01:18:46 +03:00
apply plugin: 'org.springframework.boot'
2020-04-03 02:05:42 +03:00
dependencies {
compile(project(':covid19-model'))
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation "org.apache.camel.springboot:camel-spring-boot-starter:${camelVersion}"
2020-04-03 02:05:42 +03:00
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
compileOnly "org.springframework.boot:spring-boot-configuration-processor:${springBootVersion}"
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor:${springBootVersion}"
implementation "org.jsoup:jsoup:${jsoupVersion}"
implementation "org.apache.camel:camel-mail:${camelVersion}"
2020-04-03 02:05:42 +03:00
runtimeOnly 'org.postgresql:postgresql'
}
springBoot {
mainClassName = 'com.bvn13.covid19.scheduler.Covid19SchedulerApplication'
}