build.gradle 810 B

1234567891011121314151617181920212223242526
  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. }