build.gradle

group 'com.ddb.oa'
version '1.0-SNAPSHOT'


apply plugin: 'java'
apply plugin: 'war'


sourceCompatibility = 1.7


repositories {
    maven{url "http://maven.aliyun.com/nexus/content/groups/public/"}
    maven{url "http://maven.oschina.net/content/groups/public/"}


    mavenCentral()
}


dependencies {


    compile(group: 'org.springframework', name: 'spring-core', version:'4.1.9.RELEASE') {
        exclude(module: 'commons-logging')
    }
    compile group: 'org.springframework', name: 'spring-beans', version:'4.1.9.RELEASE'
    compile group: 'org.springframework', name: 'spring-context', version:'4.1.9.RELEASE'
    compile group: 'org.springframework', name: 'spring-context-support', version:'4.1.9.RELEASE'
    compile(group: 'org.springframework', name: 'spring-aop', version:'4.1.9.RELEASE') {
        exclude(module: 'commons-logging')
    }
    compile group: 'org.springframework', name: 'spring-tx', version:'4.1.9.RELEASE'
    compile group: 'org.springframework', name: 'spring-orm', version:'4.1.9.RELEASE'
    compile group: 'org.springframework', name: 'spring-jdbc', version:'4.1.9.RELEASE'
    compile group: 'org.hibernate', name: 'hibernate-validator', version:'5.2.4.Final'
    compile group: 'org.aspectj', name: 'aspectjrt', version:'1.7.4'
    compile group: 'org.aspectj', name: 'aspectjweaver', version:'1.7.4'
    compile group: 'cglib', name: 'cglib', version:'3.1'
    compile group: 'org.mybatis', name: 'mybatis', version:'3.2.8'
    compile group: 'org.mybatis', name: 'mybatis-spring', version:'1.2.3'
    compile group: 'com.alibaba', name: 'druid', version:'1.0.18'
    compile group: 'org.springframework', name: 'spring-web', version:'4.1.9.RELEASE'
    compile group: 'org.springframework', name: 'spring-webmvc', version:'4.1.9.RELEASE'
    compile group: 'org.springframework', name: 'spring-oxm', version:'4.1.9.RELEASE'
    compile group: 'opensymphony', name: 'sitemesh', version:'2.4.2'
    compile group: 'taglibs', name: 'standard', version:'1.1.2'
    compile group: 'javax.servlet', name: 'jstl', version:'1.2'
    compile group: 'net.sf.ehcache', name: 'ehcache-core', version:'2.6.11'
    compile group: 'net.sf.ehcache', name: 'ehcache-web', version:'2.0.4'
    compile group: 'redis.clients', name: 'jedis', version:'2.5.1'
    compile group: 'org.apache.shiro', name: 'shiro-core', version:'1.2.3'
    compile group: 'org.apache.shiro', name: 'shiro-spring', version:'1.2.3'
    compile(group: 'org.apache.shiro', name: 'shiro-cas', version:'1.2.3') {
        exclude(module: 'commons-logging')
    }
    compile group: 'org.apache.shiro', name: 'shiro-web', version:'1.2.3'
    compile group: 'org.apache.shiro', name: 'shiro-ehcache', version:'1.2.3'
    compile group: 'org.activiti', name: 'activiti-engine', version:'5.21.0'
    compile group: 'org.activiti', name: 'activiti-spring', version:'5.21.0'
    compile(group: 'org.activiti', name: 'activiti-explorer', version:'5.21.0') {
        exclude(module: 'vaadin')
        exclude(module: 'dcharts-widget')
        exclude(module: 'activiti-simple-workflow')
    }
    compile group: 'org.activiti', name: 'activiti-modeler', version:'5.21.0'
    compile group: 'org.activiti', name: 'activiti-diagram-rest', version:'5.21.0'
    compile group: 'org.slf4j', name: 'slf4j-api', version:'1.7.7'
    compile group: 'org.slf4j', name: 'slf4j-log4j12', version:'1.7.7'
    compile group: 'org.slf4j', name: 'jcl-over-slf4j', version:'1.7.7'
    compile group: 'org.slf4j', name: 'jul-to-slf4j', version:'1.7.7'
    compile group: 'org.apache.commons', name: 'commons-lang3', version:'3.3.2'
    compile group: 'commons-io', name: 'commons-io', version:'2.4'
    compile group: 'commons-codec', name: 'commons-codec', version:'1.9'
    compile group: 'commons-fileupload', name: 'commons-fileupload', version:'1.3.1'
    compile(group: 'commons-beanutils', name: 'commons-beanutils', version:'1.9.1') {
        exclude(module: 'commons-logging')
    }
    compile group: 'com.google.guava', name: 'guava', version:'17.0'
    compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version:'2.2.3'
    compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version:'2.2.3'
    compile group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version:'2.2.3'
    compile group: 'com.fasterxml.jackson.module', name: 'jackson-module-jaxb-annotations', version:'2.2.3'
    compile group: 'com.thoughtworks.xstream', name: 'xstream', version:'1.4.7'
    compile group: 'net.sf.dozer', name: 'dozer', version:'5.5.1'
    compile group: 'org.freemarker', name: 'freemarker', version:'2.3.20'
    compile group: 'javax.mail', name: 'mail', version:'1.4.7'
    compile group: 'javax.activation', name: 'activation', version:'1.1.1'
    compile group: 'org.apache.poi', name: 'poi', version:'3.9'
    compile group: 'org.apache.poi', name: 'poi-ooxml', version:'3.9'
    compile group: 'org.apache.poi', name: 'poi-ooxml-schemas', version:'3.9'
    compile group: 'com.drewnoakes', name: 'metadata-extractor', version:'2.6.2'
    compile group: 'com.google.zxing', name: 'core', version:'2.2'
    compile group: 'com.google.zxing', name: 'javase', version:'2.2'
    compile group: 'junit', name: 'junit', version:'4.11'
    compile group: 'org.springframework', name: 'spring-test', version:'4.1.9.RELEASE'
    runtime group: 'mysql', name: 'mysql-connector-java', version:'5.1.30'
    runtime group: 'net.sourceforge.jtds', name: 'jtds', version:'1.3.1'
    providedCompile group: 'javax.servlet', name: 'servlet-api', version:'2.5'
    providedCompile group: 'javax.servlet.jsp', name: 'jsp-api', version:'2.1'
    compile group: 'xalan', name: 'xalan', version: '2.7.2'


    compile fileTree(dir: 'libs', include: '*.jar')
    compile group: 'org.mybatis', name: 'mybatis', version:'3.2.8'
    testCompile group: 'junit', name: 'junit', version: '4.11'
}
發佈了32 篇原創文章 · 獲贊 37 · 訪問量 48萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章