123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- version = '1.0'
- apply plugin: 'java'
- apply plugin: 'idea'
- apply plugin: 'war'
- repositories {
- maven { url "http://maven.aliyun.com/nexus/content/groups/public/" }
- mavenLocal()
- }
- dependencies {
- compile 'com.squareup.retrofit2:retrofit:2.2.0'
- compile 'com.squareup.retrofit2:converter-gson:2.2.0'
- compile 'org.projectlombok:lombok:1.16.8'
- compile 'org.apache.velocity:velocity:1.7'
- compile 'commons-fileupload:commons-fileupload:1.3.1'
- compile 'org.codehaus.jackson:jackson-core-asl:1.9.9'
- compile 'org.codehaus.jackson:jackson-mapper-asl:1.9.9'
- compile 'org.apache.poi:poi:3.9'
- compile 'net.sourceforge.jexcelapi:jxl:2.6.3'
- compile 'javax.mail:mail:1.4'
- compile 'joda-time:joda-time:2.3'
- compile 'com.thoughtworks.xstream:xstream:1.4.8'
- compile 'commons-dbutils:commons-dbutils:1.6'
- compile 'commons-net:commons-net:3.3'
- compile 'net.sf.opencsv:opencsv:2.0'
- compile 'org.jboss.netty:netty:3.1.0.GA'
- compile 'org.apache.ant:ant:1.9.4'
- compile 'org.aspectj:aspectjweaver:1.8.10'
- compile('jaxen:jaxen:1.1.6') {
- transitive = false
- }
- compile 'taglibs:standard:1.1.2'
- compile 'commons-jxpath:commons-jxpath:1.3'
- compile 'com.fasterxml.jackson.core:jackson-annotations:2.9.9'
- compile 'org.jboss:jboss-vfs:3.2.9.Final'
- compile 'org.apache.poi:poi-ooxml:3.9'
- compile 'org.apache.struts:struts2-core:2.5.30'
- compile 'org.apache.struts:struts2-convention-plugin:2.5.30'
- // compile 'org.apache.struts.xwork:xwork-core:2.3.28.1'
- compile 'net.coobird:thumbnailator:0.4.8'
- compile 'org.apache.ws.security:wss4j:1.6.4'
- compile 'commons-httpclient:commons-httpclient:3.1-rc1'
- compile 'com.lowagie:itext:4.2.1'
- compile 'commons-beanutils:commons-beanutils-core:1.8.3'
- compile 'com.ibm.icu:icu4j:56.1'
- compile 'org.beanshell:bsh:2.0b5'
- compile 'avalon-framework:avalon-framework:4.1.5-RC2'
- compile 'xml-resolver:xml-resolver:1.2'
- compile 'com.sun.xml.bind:jaxb-impl:2.0.5'
- compile 'org.codehaus.groovy:groovy-all:2.4.5'
- compile 'net.sourceforge.pjl-comp-filter:pjl-comp-filter:1.7'
- compile 'org.bouncycastle:bcprov-jdk16:1.46'
- compile 'org.apache.servicemix.bundles:org.apache.servicemix.bundles.gentlyweb-utils:1.5_1'
- compile('org.apache.struts:struts2-spring-plugin:2.5.30'){
- exclude module: 'spring-context'
- }
- compile 'javax.servlet:jstl:1.1.2'
- compile 'opensymphony:oscore:2.2.6'
- compile 'hsqldb:hsqldb:1.8.0.7'
- compile 'org.apache.httpcomponents:httpclient:4.3.5'
- compile 'com.caucho:hessian:4.0.7'
- compile 'org.apache.xmlgraphics:batik-bridge:1.7'
- compile 'org.apache.xmlgraphics:batik-svggen:1.7'
- compile 'com.alibaba:fastjson:1.2.58'
- compile 'org.apache.commons:commons-pool2:2.4.2'
- compile 'redis.clients:jedis:2.9.0'
- compile 'cn.hutool:hutool-all:4.5.10'
- compile ('org.springframework.session:spring-session:1.1.1.RELEASE'){
- transitive = false
- }
- compile ('org.springframework.data:spring-data-redis:1.6.2.RELEASE'){
- transitive = false
- }
- compile ('org.springframework.data:spring-data-gemfire:1.7.2.RELEASE'){
- transitive = false
- }
- compile('org.codehaus.xfire:xfire-core:1.2.5'){
- transitive = false
- }
- compile 'org.jdom:jdom:1.1.3'
- compile('jcifs:jcifs:1.3.17'){
- transitive = false
- }
- compile 'org.drools:drools-compiler:6.5.0.Final'
- compile ('com.dangdang:elastic-job-lite-core:2.1.1'){
- exclude module: 'quartz'
- }
- compile ('com.dangdang:elastic-job-lite-spring:2.1.1'){
- transitive = false
- }
- providedCompile "javax.servlet:javax.servlet-api:3.1.0"
- providedCompile "javax.servlet.jsp:jsp-api:2.2.1-b03"
- compile(
- project(':model'),
- project(':common'),
- project(':interface'),
- project(':business')
- )
- compile fileTree(dir: '../lib', include: '*.jar')
- }
- configurations.compile.resolutionStrategy {
- failOnVersionConflict()
- force 'commons-collections:commons-collections:3.2'
- force 'commons-lang:commons-lang:2.5'
- force 'commons-beanutils:commons-beanutils:1.8.3'
- force 'commons-beanutils:commons-beanutils-core:1.8.3'
- force 'commons-logging:commons-logging:1.1.3'
- force 'commons-codec:commons-codec:1.5'
- force 'commons-digester:commons-digester:2.1'
- force 'commons-io:commons-io:2.6'
- force 'commons-fileupload:commons-fileupload:1.3.1'
- force 'org.apache.commons:commons-lang3:3.4'
- force 'dom4j:dom4j:1.6.1'
- force 'org.slf4j:slf4j-api:1.7.21'
- force 'org.hibernate:hibernate-core:3.6.9.Final'
- force 'log4j:log4j:1.2.17'
- force 'xml-apis:xml-apis:2.0.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-annotations:2.9.9'
- force 'xerces:xercesImpl:2.8.1'
- force 'joda-time:joda-time:2.3'
- force 'org.apache.santuario:xmlsec:1.4.6'
- force 'com.lowagie:itext:4.2.1'
- force 'commons-collections:commons-collections:3.2'
- //force 'org.quartz-scheduler:quartz:2.2.3'
- force 'com.google.guava:guava:18.0'
- force 'com.google.code.gson:gson:2.7'
- force 'org.slf4j:slf4j-log4j12:1.7.21'
- force 'org.codehaus.jackson:jackson-mapper-asl:1.9.9'
- force 'commons-pool:commons-pool:1.3'
- force 'org.codehaus.woodstox:wstx-asl:3.2.9'
- force 'commons-httpclient:commons-httpclient:3.1-rc1'
- force 'org.apache.geronimo.specs:geronimo-activation_1.1_spec:1.1'
- force "org.apache.httpcomponents:httpcore:4.3.2"
- force "org.apache.ws.commons.axiom:axiom-api:1.2.8"
- force "org.apache.ws.commons.axiom:axiom-impl:1.2.8"
- force "org.apache.ws.commons.schema:XmlSchema:1.4.3"
- force 'org.apache.httpcomponents:httpclient:4.3.6'
- force 'com.fasterxml.jackson.core:jackson-databind:2.9.9'
- force "org.apache.ant:ant:1.9.4"
- force "xalan:xalan:2.7.0"
- force 'com.thoughtworks.xstream:xstream:1.4.9'
- force 'com.fasterxml.jackson.core:jackson-core:2.9.9'
- force 'ognl:ognl:3.1.29'
- force 'com.alibaba:fastjson:1.2.58'
- force 'org.yaml:snakeyaml:1.20'
- }
- war {
- archiveName 'BH_CLIS.war'
- }
|