build.gradle 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. group 'com.gxzc.pro'
  2. version '1.0-SNAPSHOT'
  3. buildscript {
  4. ext {
  5. kotlin_version = '1.2.20'
  6. commons_io_version = '2.5'
  7. commons_logging_version = '1.1.3'
  8. commons_lang3_version = '3.5'
  9. spring_mvc_version = '5.0.2.RELEASE'
  10. spring_mvc_mongodb_version='1.10.7.RELEASE'
  11. mysql_connector_version = '5.1.45'
  12. alidruid_version = '1.1.6'
  13. mybatis_version = '3.4.5'
  14. mybatiss_version = '1.3.1'
  15. mybatis_plus_version = '2.1.6'
  16. fastjson_version = '1.2.44'
  17. }
  18. repositories {
  19. mavenCentral()
  20. }
  21. dependencies {
  22. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  23. classpath "org.jetbrains.kotlin:kotlin-allopen:$kotlin_version"
  24. }
  25. }
  26. allprojects {
  27. }
  28. subprojects {
  29. apply plugin: 'java'
  30. apply plugin: 'kotlin'
  31. sourceCompatibility = 1.8
  32. targetCompatibility = 1.8
  33. repositories {
  34. mavenCentral()
  35. }
  36. dependencies {
  37. compile("org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version")
  38. compile("org.jetbrains.kotlin:kotlin-reflect:$kotlin_version")
  39. testCompile group: 'junit', name: 'junit', version: '4.12'
  40. compile ("commons-io:commons-io:$commons_io_version")
  41. compile ("commons-logging:commons-logging:$commons_logging_version")
  42. compile ("org.apache.commons:commons-lang3:$commons_lang3_version")
  43. compile group: 'commons-codec', name: 'commons-codec', version: '1.10'
  44. compile group: 'commons-fileupload', name: 'commons-fileupload', version: '1.3.2'
  45. compile group: 'commons-beanutils', name: 'commons-beanutils', version: '1.9.3'
  46. compile group: 'log4j', name: 'log4j', version: '1.2.17'
  47. compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.7'
  48. compile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.7'
  49. // https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api
  50. compile group: 'javax.servlet', name: 'javax.servlet-api', version: '3.1.0'
  51. compile group: 'javax.servlet', name: 'jstl', version: '1.2'
  52. compile group: 'javax.servlet', name: 'servlet-api', version: '2.5'
  53. compile group: 'javax.servlet.jsp', name: 'jsp-api', version: '2.1'
  54. // https://mvnrepository.com/artifact/org.springframework/spring-context
  55. compile ("org.springframework:spring-core:$spring_mvc_version")
  56. compile ("org.springframework:spring-beans:$spring_mvc_version")
  57. compile ("org.springframework:spring-context:$spring_mvc_version")
  58. compile ("org.springframework:spring-context-support:$spring_mvc_version")
  59. compile ("org.springframework:spring-aop:$spring_mvc_version")
  60. compile ("org.springframework:spring-tx:$spring_mvc_version")
  61. compile ("org.springframework:spring-orm:$spring_mvc_version")
  62. compile ("org.springframework:spring-jdbc:$spring_mvc_version")
  63. compile ("org.springframework:spring-webmvc:$spring_mvc_version")
  64. compile ("org.springframework:spring-web:$spring_mvc_version")
  65. compile ("org.springframework:spring-oxm:$spring_mvc_version")
  66. compile ("org.springframework:spring-test:$spring_mvc_version")
  67. compile ("org.springframework.data:spring-data-mongodb:$spring_mvc_mongodb_version")
  68. compile ("mysql:mysql-connector-java:$mysql_connector_version")
  69. compile ("com.alibaba:druid:$alidruid_version")
  70. // compile ("org.mybatis:mybatis:$mybatis_version")
  71. // compile ("org.mybatis:mybatis-spring:$mybatiss_version")
  72. compile ("com.baomidou:mybatis-plus:$mybatis_plus_version")
  73. compile group: 'com.google.guava', name: 'guava', version: '20.0'
  74. compile ("com.alibaba:fastjson:$fastjson_version")
  75. compile ("com.fasterxml.jackson.core:jackson-core:2.9.3")
  76. compile ("com.fasterxml.jackson.core:jackson-databind:2.9.3")
  77. compile ("com.fasterxml.jackson.core:jackson-annotations:2.9.3")
  78. compile ("com.baomidou:kisso:3.6.11")
  79. }
  80. }