build.gradle 842 B

12345678910111213141516171819202122232425262728293031323334
  1. buildscript {
  2. repositories {
  3. mavenLocal()
  4. maven { url "http://maven.aliyun.com/nexus/content/groups/public" }
  5. mavenCentral()
  6. }
  7. dependencies {
  8. classpath("$bootGroup:spring-boot-gradle-plugin:$springBootVersion")
  9. }
  10. }
  11. apply plugin: "$bootGroup"
  12. apply plugin: 'io.spring.dependency-management'
  13. dependencies {
  14. compile project(":common")
  15. compile project(":opentsdb-client")
  16. compile fileTree(dir: 'src/main/lib', include: '*.jar')
  17. compile("$bootGroup:spring-boot-starter-web")
  18. compile("$bootGroup:spring-boot-starter-undertow")
  19. compile("$bootGroup:spring-boot-starter-log4j2")
  20. compile 'com.alibaba:fastjson:1.2.17'
  21. compile 'org.springframework.kafka:spring-kafka'
  22. compile 'com.opencsv:opencsv:4.5'
  23. testCompile("$bootGroup:spring-boot-starter-test")
  24. }