1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| apply plugin: 'java'
repositories { mavenCentral() }
dependencies {
def springVersion = "3.2.4.RELEASE" compile "org.springframework:spring-webmvc:${springVersion}", "org.springframework:spring-jdbc:${springVersion}", "org.springframework:spring-tx:${springVersion}" }
task copyJars(type: Copy) { from configurations.runtime into 'lib' }
|