build.gradle 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. version = '1.0.3'
  12. apply plugin: "$bootGroup"
  13. apply plugin: 'io.spring.dependency-management'
  14. dependencies {
  15. compile project(":common:utils")
  16. compile("$bootGroup:spring-boot-starter-web")
  17. compile("$bootGroup:spring-boot-starter-undertow")
  18. compile("$bootGroup:spring-boot-starter-websocket")
  19. compile('org.apache.logging.log4j:log4j-core:2.15.0')
  20. compile('org.apache.logging.log4j:log4j-jul:2.15.0')
  21. compile('org.apache.logging.log4j:log4j-api:2.15.0')
  22. compile('org.apache.logging.log4j:log4j-slf4j-impl:2.15.0')
  23. compile 'mysql:mysql-connector-java:5.1.28'
  24. compile 'com.alibaba:druid:1.0.25'
  25. compile 'com.alibaba:fastjson:1.2.17'
  26. compile 'com.baomidou:mybatis-plus-boot-starter:3.1.1'
  27. compile 'com.baomidou:mybatis-plus-generator:3.1.1'
  28. testCompile("$bootGroup:spring-boot-starter-test")
  29. implementation 'com.xuxueli:xxl-job-core:2.3.0'
  30. }