build.gradle 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. version = '1.0'
  2. apply plugin: 'java'
  3. apply plugin: 'idea'
  4. repositories {
  5. mavenLocal()
  6. maven {url "http://maven.aliyun.com/nexus/content/groups/public/"}
  7. }
  8. dependencies {
  9. compile 'commons-collections:commons-collections:3.2'
  10. compile 'org.hibernate:hibernate-core:3.6.9.Final'
  11. compile 'javax.persistence:persistence-api:1.0'
  12. compile 'org.apache.commons:commons-lang3:3.4'
  13. compile 'net.sf.json-lib:json-lib:2.4:jdk15'
  14. compile 'tk.mybatis:mapper:3.3.8'
  15. compile 'org.mybatis:mybatis:3.2.8'
  16. compile 'org.mybatis:mybatis-spring:1.2.2'
  17. compile 'org.mybatis.generator:mybatis-generator-core:1.3.2'
  18. compile 'org.springframework:spring-context:4.3.3.RELEASE'
  19. compile 'org.springframework:spring-aop:4.3.3.RELEASE'
  20. compile 'org.springframework:spring-context-support:3.2.13.RELEASE'
  21. compile 'org.springframework:spring-test:4.3.3.RELEASE'
  22. compile 'org.springframework:spring-beans:4.3.3.RELEASE'
  23. compile 'org.springframework:spring-core:4.3.3.RELEASE'
  24. compile 'org.springframework:spring-messaging:4.3.3.RELEASE'
  25. compile 'org.springframework:spring-web:3.2.13.RELEASE'
  26. compile 'org.springframework:spring-webmvc:3.2.13.RELEASE'
  27. compile 'org.springframework:spring-orm:3.2.13.RELEASE'
  28. compile 'org.springframework:spring-tx:3.2.13.RELEASE'
  29. compile 'org.springframework:spring-jdbc:3.2.13.RELEASE'
  30. compile 'com.github.pagehelper:pagehelper:4.1.1'
  31. compile 'org.mongodb:mongo-java-driver:3.4.1'
  32. compile 'com.101tec:zkclient:0.8'
  33. compile 'org.springframework.amqp:spring-amqp:1.6.6.RELEASE'
  34. compile 'org.springframework.retry:spring-retry:1.1.3.RELEASE'
  35. compile 'com.rabbitmq:http-client:1.0.0.RELEASE'
  36. compile 'com.rabbitmq:amqp-client:3.6.5'
  37. compile('org.springframework.amqp:spring-rabbit:1.6.6.RELEASE'){
  38. transitive = false
  39. }
  40. compile 'org.redisson:redisson:3.4.3'
  41. compile 'redis.clients:jedis:2.9.0'
  42. compile 'com.alibaba:druid:1.1.5'
  43. compile ('org.springframework.data:spring-data-redis:1.6.2.RELEASE'){
  44. transitive = false
  45. }
  46. compile 'org.slf4j:slf4j-log4j12:1.7.21'
  47. compile 'log4j:log4j:1.2.17'
  48. compile 'javassist:javassist:3.11.0.GA'
  49. compile 'com.mchange:c3p0:0.9.5.1'
  50. compile 'org.hibernate:hibernate-oscache:3.6.9.Final'
  51. compile 'net.sf.ehcache:ehcache-core:2.6.9'
  52. compile 'commons-io:commons-io:2.6'
  53. compile 'com.alibaba:fastjson:1.2.23'
  54. compile (
  55. project(':model'),
  56. project(':common'),
  57. project(':interface')
  58. )
  59. compile fileTree(dir: '../lib', include: '*.jar')
  60. testCompile 'junit:junit:4.12'
  61. testCompile 'org.springframework:spring-test:3.2.13.RELEASE'
  62. }
  63. configurations.compile.resolutionStrategy {
  64. failOnVersionConflict()
  65. force 'com.mchange:c3p0:0.9.5.1'
  66. force 'commons-lang:commons-lang:2.5'
  67. force 'commons-logging:commons-logging:1.1.3'
  68. force 'commons-beanutils:commons-beanutils:1.8.3'
  69. force 'commons-beanutils:commons-beanutils-core:1.8.3'
  70. force 'commons-collections:commons-collections:3.2'
  71. force 'org.springframework:spring-context:4.3.3.RELEASE'
  72. force 'org.springframework:spring-context-support:3.2.13.RELEASE'
  73. force 'org.springframework:spring-aop:4.3.3.RELEASE'
  74. force 'org.springframework:spring-expression:4.3.3.RELEASE'
  75. force 'org.springframework:spring-test:4.3.3.RELEASE'
  76. force 'org.springframework:spring-beans:4.3.3.RELEASE'
  77. force 'org.springframework:spring-core:4.3.3.RELEASE'
  78. force 'org.springframework:spring-web:3.2.13.RELEASE'
  79. force 'org.springframework:spring-webmvc:3.2.13.RELEASE'
  80. force 'org.springframework:spring-orm:3.2.13.RELEASE'
  81. force 'org.springframework:spring-tx:3.2.13.RELEASE'
  82. force 'org.springframework:spring-jdbc:3.2.13.RELEASE'
  83. force 'com.fasterxml.jackson.core:jackson-databind:2.7.6'
  84. force 'org.apache.httpcomponents:httpclient:4.3.6'
  85. force 'org.slf4j:slf4j-api:1.7.21'
  86. force 'org.slf4j:slf4j-log4j12:1.7.21'
  87. force 'log4j:log4j:1.2.17'
  88. }