build.gradle 748 B

1234567891011121314151617181920212223242526272829
  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. testCompile("$bootGroup:spring-boot-starter-test")
  22. }