build.gradle 802 B

123456789101112131415161718192021222324252627282930313233
  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("$bootGroup:spring-boot-starter-web")
  17. compile("$bootGroup:spring-boot-starter-undertow")
  18. compile("$bootGroup:spring-boot-starter-log4j2")
  19. compile 'com.alibaba:fastjson:1.2.17'
  20. compile 'org.springframework.kafka:spring-kafka'
  21. compile 'com.opencsv:opencsv:4.5'
  22. testCompile("$bootGroup:spring-boot-starter-test")
  23. }