spring 源码 https://spring.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.2 KiB

9 years ago
buildscript {
repositories {
maven { url 'http://repo.springsource.org/plugins-release' }
}
dependencies {
classpath 'org.springframework.build.gradle:propdeps-plugin:0.0.7'
}
}
9 years ago
apply plugin: 'java'
9 years ago
apply plugin: 'propdeps'
apply plugin: 'propdeps-idea'
apply plugin: 'propdeps-maven'
9 years ago
repositories {
mavenCentral()
}
dependencies {
compile "org.springframework:spring-core:4.1.2.RELEASE"
compile "org.reactivestreams:reactive-streams:1.0.0.RC3"
compile "io.netty:netty-buffer:4.0.25.Final"
compile "org.slf4j:slf4j-api:1.7.6"
compile "ch.qos.logback:logback-classic:1.1.2"
9 years ago
provided "javax.servlet:javax.servlet-api:3.1.0"
9 years ago
testCompile "junit:junit:4.12"
testCompile "org.springframework:spring-web:4.1.2.RELEASE"
testCompile 'org.apache.tomcat:tomcat-util:8.0.23'
testCompile 'org.apache.tomcat.embed:tomcat-embed-core:8.0.23'
testCompile 'org.eclipse.jetty:jetty-server:9.3.0.v20150612'
testCompile 'org.eclipse.jetty:jetty-servlet:9.3.0.v20150612'
testCompile("log4j:log4j:1.2.16")
testCompile("org.mockito:mockito-core:1.10.19") {
exclude group:'org.hamcrest', module:'hamcrest-core'
}
testCompile("org.hamcrest:hamcrest-all:1.3")
testCompile "org.springframework:spring-test:4.1.2.RELEASE"
9 years ago
}