build.gradle 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. bootJar.enabled = false
  14. jar.enabled = true
  15. dependencies {
  16. compile project(":common:utils")
  17. compile project(":common:data")
  18. compile project(":dao:dao-interface")
  19. compile fileTree(dir: 'src/main/lib', include: '*.jar')
  20. compile('org.apache.logging.log4j:log4j-core:2.15.0')
  21. compile('org.apache.logging.log4j:log4j-jul:2.15.0')
  22. compile('org.apache.logging.log4j:log4j-api:2.15.0')
  23. compile('org.apache.logging.log4j:log4j-slf4j-impl:2.15.0')
  24. //compile("com.github.it235:knife4j-redis-lettuce-stater")
  25. // compile('org.springframework.boot:spring-boot-starter-data-redis')
  26. // implementation "org.springframework.boot:spring-boot-starter-redis:1.3.5.RELEASE"
  27. testCompile("$bootGroup:spring-boot-starter-test")
  28. // https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt
  29. compile group: 'io.jsonwebtoken', name: 'jjwt', version: '0.9.0'
  30. compile 'org.apache.commons:commons-pool2'
  31. compile("$bootGroup:spring-boot-starter-data-redis-reactive")
  32. compile 'com.fasterxml.jackson.core:jackson-databind'
  33. }