1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
| testCompile group: 'junit', name: 'junit', version: '4.11'
def springVersion = "4.3.7.RELEASE" def mybatisVersion = "3.2.6" def log4jVersion = "1.2.17"
compile("org.springframework:spring-aop:$springVersion", "org.springframework:spring-orm:$springVersion", "org.springframework:spring-jdbc:$springVersion", "org.springframework:spring-instrument-tomcat:$springVersion", "org.springframework:spring-instrument:$springVersion", "org.springframework:spring-framework-bom:$springVersion", "org.springframework:spring-expression:$springVersion", "org.springframework:spring-core:$springVersion", "org.springframework:spring-context-support:$springVersion", "org.springframework:spring-context:$springVersion", "org.springframework:spring-beans:$springVersion", "org.springframework:spring-aspects:$springVersion", "org.springframework:spring-test:$springVersion", "org.springframework:spring-tx:$springVersion", "org.springframework:spring-web:$springVersion", "org.springframework:spring-webmvc:$springVersion", "org.springframework:spring-webmvc-portlet:$springVersion")
compile group: 'org.mybatis', name: 'mybatis', version: mybatisVersion compile group: 'org.mybatis', name: 'mybatis-spring', version: '1.2.2'
compile group: 'javax', name: 'javaee-api', version: '7.0'
compile group: 'mysql', name: 'mysql-connector-java', version: '5.1.6' compile group: 'commons-dbcp', name: 'commons-dbcp', version: '1.4'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.7.3' compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.8.7'
compile group: 'jstl', name: 'jstl', version: '1.2'
compile("log4j:log4j:$log4jVersion", "org.slf4j:slf4j-api:1.7.21", "org.slf4j:slf4j-log4j12:1.7.21")
compile group: 'commons-fileupload', name: 'commons-fileupload', version: '1.3.1' compile group: 'commons-io', name: 'commons-io', version: '2.4' compile group: 'commons-codec', name: 'commons-codec', version: '1.10'
compile group: 'junit', name: 'junit', version: '4.12'
|