1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- version = '1.0'
- apply plugin: 'java'
- apply plugin: 'idea'
- repositories {
- mavenLocal()
- maven {url "http://maven.aliyun.com/nexus/content/groups/public/"}
- }
- dependencies {
- compile 'commons-collections:commons-collections:3.2'
- compile 'org.hibernate:hibernate-core:3.6.9.Final'
- compile 'javax.persistence:persistence-api:1.0'
- compile 'org.apache.commons:commons-lang3:3.4'
- compile 'net.sf.json-lib:json-lib:2.4:jdk15'
- compile 'tk.mybatis:mapper:3.3.8'
- compile 'org.mybatis:mybatis:3.2.8'
- compile 'org.mybatis:mybatis-spring:1.2.2'
- compile 'org.mybatis.generator:mybatis-generator-core:1.3.2'
- compile 'org.springframework:spring-context:4.3.3.RELEASE'
- compile 'org.springframework:spring-aop:4.3.3.RELEASE'
- compile 'org.springframework:spring-context-support:3.2.13.RELEASE'
- compile 'org.springframework:spring-test:4.3.3.RELEASE'
- compile 'org.springframework:spring-beans:4.3.3.RELEASE'
- compile 'org.springframework:spring-core:4.3.3.RELEASE'
- compile 'org.springframework:spring-messaging:4.3.3.RELEASE'
- compile 'org.springframework:spring-web:3.2.13.RELEASE'
- compile 'org.springframework:spring-webmvc:3.2.13.RELEASE'
- compile 'org.springframework:spring-orm:3.2.13.RELEASE'
- compile 'org.springframework:spring-tx:3.2.13.RELEASE'
- compile 'org.springframework:spring-jdbc:3.2.13.RELEASE'
- compile 'com.github.pagehelper:pagehelper:4.1.1'
- compile 'org.mongodb:mongo-java-driver:3.4.1'
- compile 'com.101tec:zkclient:0.8'
- compile 'org.springframework.amqp:spring-amqp:1.6.6.RELEASE'
- compile 'org.springframework.retry:spring-retry:1.1.3.RELEASE'
- compile 'com.rabbitmq:http-client:1.0.0.RELEASE'
- compile 'com.rabbitmq:amqp-client:3.6.5'
- compile('org.springframework.amqp:spring-rabbit:1.6.6.RELEASE'){
- transitive = false
- }
- compile 'org.redisson:redisson:3.4.3'
- compile 'redis.clients:jedis:2.9.0'
- compile 'com.alibaba:druid:1.1.5'
- compile ('org.springframework.data:spring-data-redis:1.6.2.RELEASE'){
- transitive = false
- }
- compile 'org.slf4j:slf4j-log4j12:1.7.21'
- compile 'log4j:log4j:1.2.17'
- compile 'javassist:javassist:3.11.0.GA'
- compile 'com.mchange:c3p0:0.9.5.1'
- compile 'org.hibernate:hibernate-oscache:3.6.9.Final'
- compile 'net.sf.ehcache:ehcache-core:2.6.9'
- compile 'commons-io:commons-io:2.6'
- compile 'com.alibaba:fastjson:1.2.23'
- compile (
- project(':model'),
- project(':common'),
- project(':interface')
- )
- compile fileTree(dir: '../lib', include: '*.jar')
- testCompile 'junit:junit:4.12'
- testCompile 'org.springframework:spring-test:3.2.13.RELEASE'
- }
- configurations.compile.resolutionStrategy {
- failOnVersionConflict()
- force 'com.mchange:c3p0:0.9.5.1'
- force 'commons-lang:commons-lang:2.5'
- force 'commons-logging:commons-logging:1.1.3'
- force 'commons-beanutils:commons-beanutils:1.8.3'
- force 'commons-beanutils:commons-beanutils-core:1.8.3'
- force 'commons-collections:commons-collections:3.2'
- force 'org.springframework:spring-context:4.3.3.RELEASE'
- force 'org.springframework:spring-context-support:3.2.13.RELEASE'
- force 'org.springframework:spring-aop:4.3.3.RELEASE'
- force 'org.springframework:spring-expression:4.3.3.RELEASE'
- force 'org.springframework:spring-test:4.3.3.RELEASE'
- force 'org.springframework:spring-beans:4.3.3.RELEASE'
- force 'org.springframework:spring-core:4.3.3.RELEASE'
- force 'org.springframework:spring-web:3.2.13.RELEASE'
- force 'org.springframework:spring-webmvc:3.2.13.RELEASE'
- force 'org.springframework:spring-orm:3.2.13.RELEASE'
- force 'org.springframework:spring-tx:3.2.13.RELEASE'
- force 'org.springframework:spring-jdbc:3.2.13.RELEASE'
- force 'com.fasterxml.jackson.core:jackson-databind:2.7.6'
- force 'org.apache.httpcomponents:httpclient:4.3.6'
- force 'org.slf4j:slf4j-api:1.7.21'
- force 'org.slf4j:slf4j-log4j12:1.7.21'
- force 'log4j:log4j:1.2.17'
- }
|