1
0

build.gradle 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. plugins {
  2. id 'org.springframework.boot' version '2.3.3.RELEASE'
  3. id 'io.spring.dependency-management' version '1.0.10.RELEASE'
  4. }
  5. subprojects {
  6. apply plugin: 'java'
  7. apply plugin: 'idea'
  8. group = 'com.lote'
  9. version = '1.0.0'
  10. sourceCompatibility = 1.8
  11. targetCompatibility = 1.8
  12. tasks.withType(JavaCompile) {
  13. options.encoding = "UTF-8"
  14. }
  15. repositories {
  16. mavenLocal()
  17. maven {url 'https://maven.aliyun.com/repository/public/'}
  18. maven {url 'https://maven.aliyun.com/repository/gradle-plugin/'}
  19. maven {url 'https://maven.aliyun.com/repository/spring/'}
  20. maven {url 'https://maven.aliyun.com/repository/spring-plugin/'}
  21. jcenter()
  22. mavenCentral()
  23. maven {url 'https://repository.apache.org/content/groups/public/'}
  24. maven {
  25. url 'http://nexus.ds-bay.com/content/groups/public/'
  26. credentials {
  27. username 'admin'
  28. password 'admin123'
  29. }
  30. }
  31. }
  32. ext {
  33. junit = '4.13'
  34. // jmockit = '1.49'
  35. slf4j = '1.7.25'
  36. spring_boot = '2.3.3.RELEASE'
  37. spring = '5.2.8.RELEASE'
  38. javax_servlet = '4.0.1'
  39. mysql = '5.1.21'
  40. bonecp = '0.8.0.RELEASE'
  41. // ali JDBC datasource implementation
  42. druid = '1.1.23'
  43. mybatis_spring_boot = '1.3.1'
  44. mybatis_typehandlers_jsr310 = '1.0.2'
  45. mybatis = '3.5.5'
  46. mybatis_spring = '2.0.5'
  47. mybatis_ehcache = '1.2.1'
  48. mybatis_plugin_page = '1.0.5'
  49. logback_ext_spring = '0.1.5'
  50. jackson = '2.11.2'
  51. jackson_asl = '1.9.13'
  52. // ali json
  53. fastjson = '1.2.58'
  54. gson = '2.8.0'
  55. commons_beanutils = '1.9.3'
  56. commons_codec = '1.13'
  57. commons_collections = '3.2.2'
  58. commons_discovery = '0.5'
  59. commons_fileupload = '1.4'
  60. commons_io = '2.6'
  61. commons_lang3 = '3.6'
  62. commons_lang = '2.6'
  63. commons_logging = '1.2'
  64. apache_httpclient = '4.5.4'
  65. apache_axis = '1.4'
  66. apache_pdfbox = '2.0.20'
  67. apache_poi = '3.16'
  68. google_guava = '29.0-jre'
  69. okhttp = '4.8.0'
  70. okio = '2.7.0'
  71. cglib = '3.3.0'
  72. jedis = '3.3.0'
  73. javax_websocket = '1.1'
  74. shiro = '1.5.3'
  75. servlet = '3.1.0'
  76. jstl = '1.2'
  77. jsp_jstl_api = '1.2.1'
  78. jsp_api = '2.2.1-b03'
  79. tomcat_embed_jasper = '9.0.37'
  80. hibernate_validator = '5.1.3.Final'
  81. dubbo = '2.8.4'
  82. javassist = '3.3.GA'
  83. netty = '3.2.10.Final'
  84. io_netty = '3.10.6.Final'
  85. zkclient = '0.4'
  86. zookeeper = '3.4.10'
  87. jxls = '2.4.2'
  88. jxls_poi = '1.0.13'
  89. jxls_jexcel = '1.0.6'
  90. jxls_reader = '2.0.3'
  91. csource = '1.27'
  92. rabbitmq = '4.0.1'
  93. spring_rabbit = '1.7.3.RELEASE'
  94. quartz_scheduler = '2.2.1'
  95. jms = '1.1'
  96. jms_api = '2.0.1'
  97. xbean_spring = '4.17'
  98. activemq_core = '5.5.0'
  99. activemq_pool = '5.7.0'
  100. swagger = '2.9.2'
  101. axis_jaxrpc = '1.4'
  102. javax_wsdl = '1.6.1'
  103. jbarcode = '0.2.8'
  104. easybar = '1.0.0'
  105. sf_barcode4j = '2.0'
  106. youzan_sdk_core = '1.0.5-RELEASE'
  107. youzan_sdk_gen = '1.0.5.201907111756-RELEASE'
  108. }
  109. }
  110. configure(subprojects.findAll{
  111. it.name == 'wms-center' || it.name == 'wms-client' ||
  112. it.name == 'wms-operate'
  113. }){
  114. apply plugin: "org.springframework.boot"
  115. apply plugin: 'io.spring.dependency-management'
  116. }