build.gradle 877 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 fileTree(dir: 'src/main/lib', include: '*.jar')
  16. compile("org.apache.kafka:connect-api:$kafkaVersion")
  17. compile("org.apache.kudu:kudu-client:$kuduVersion")
  18. compile 'redis.clients:jedis:2.8.1'
  19. compile 'org.apache.directory.studio:org.apache.commons.codec:1.8'
  20. compile 'io.inbot:inbot-testfixtures:1.6'
  21. compile("$bootGroup:spring-boot-starter-log4j2")
  22. compile 'com.alibaba:fastjson:1.2.17'
  23. testCompile("$bootGroup:spring-boot-starter-test")
  24. }