12345678910111213141516171819202122232425262728293031323334 |
- buildscript {
- repositories {
- mavenLocal()
- maven { url "http://maven.aliyun.com/nexus/content/groups/public" }
- mavenCentral()
- }
- dependencies {
- classpath("$bootGroup:spring-boot-gradle-plugin:$springBootVersion")
- }
- }
- apply plugin: "$bootGroup"
- apply plugin: 'io.spring.dependency-management'
- dependencies {
- compile project(":common")
- compile fileTree(dir: 'src/main/lib', include: '*.jar')
- compile("org.apache.kafka:connect-api:$kafkaVersion")
- compile("org.apache.kudu:kudu-client:$kuduVersion")
- compile 'redis.clients:jedis:2.8.1'
- compile 'org.apache.directory.studio:org.apache.commons.codec:1.8'
- compile 'io.inbot:inbot-testfixtures:1.6'
- compile("$bootGroup:spring-boot-starter-log4j2")
- compile 'com.alibaba:fastjson:1.2.17'
- testCompile("$bootGroup:spring-boot-starter-test")
- }
|