build.gradle 36.8 KB
Newer Older
1
buildscript {
2
	repositories {
P
Phillip Webb 已提交
3
		maven { url "http://repo.springsource.org/plugins-release" }
4 5
	}
	dependencies {
P
Phillip Webb 已提交
6
		classpath("org.springframework.build.gradle:propdeps-plugin:0.0.4")
R
Rob Winch 已提交
7
		classpath("org.asciidoctor:asciidoctor-gradle-plugin:0.7.0")
8
	}
9 10
}

C
Chris Beams 已提交
11
configure(allprojects) { project ->
12 13
	group = "org.springframework"
	version = qualifyVersionIfNecessary(version)
14

J
Juergen Hoeller 已提交
15
	ext.aspectjVersion  = "1.8.0.M1"
J
Juergen Hoeller 已提交
16
	ext.groovyVersion   = "1.8.9"
P
Phillip Webb 已提交
17 18 19
	ext.hsqldbVersion   = "1.8.0.10"
	ext.junitVersion    = "4.11"
	ext.slf4jVersion    = "1.6.1"
20
	ext.gradleScriptDir = "${rootProject.projectDir}/gradle"
21

22
	apply plugin: "propdeps"
P
Phillip Webb 已提交
23
	apply plugin: "java"
24
	apply plugin: "test-source-set-dependencies"
25
	apply from: "${gradleScriptDir}/ide.gradle"
C
Chris Beams 已提交
26

27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
	[compileJava, compileTestJava]*.options*.compilerArgs = [
		"-Xlint:serial",
		"-Xlint:varargs",
		"-Xlint:cast",
		"-Xlint:classfile",
		"-Xlint:dep-ann",
		"-Xlint:divzero",
		"-Xlint:empty",
		"-Xlint:finally",
		"-Xlint:overrides",
		"-Xlint:path",
		"-Xlint:processing",
		"-Xlint:static",
		"-Xlint:try",
		"-Xlint:-options",     // intentionally disabled
		"-Xlint:-fallthrough", // intentionally disabled
		"-Xlint:-rawtypes",    // TODO enable and fix warnings
		"-Xlint:-deprecation", // TODO enable and fix warnings
		"-Xlint:-unchecked"    // TODO enable and fix warnings
	]
C
Chris Beams 已提交
47

48 49 50 51 52 53
	compileJava {
		sourceCompatibility=1.6
		targetCompatibility=1.6
	}

	compileTestJava {
J
Juergen Hoeller 已提交
54 55 56 57
		sourceCompatibility=1.7
		targetCompatibility=1.7
	}

P
Phillip Webb 已提交
58
	sourceSets.test.resources.srcDirs = ["src/test/resources", "src/test/java"]
C
Chris Beams 已提交
59

C
Chris Beams 已提交
60 61
	test {
		systemProperty("java.awt.headless", "true")
62
		systemProperty("testGroups", project.properties.get("testGroups"))
63 64 65
		scanForTestClasses = false
		include '**/*Tests.*'
		exclude '**/*Abstract*.*'
C
Chris Beams 已提交
66
	}
C
Chris Beams 已提交
67

68
	repositories {
69 70
		maven { url "http://repo.spring.io/libs-release" }
		maven { url "http://repo.spring.io/milestone" }  // for AspectJ 1.8.0.M1
R
Rossen Stoyanchev 已提交
71 72
		maven { url "https://repository.apache.org/content/repositories/releases" }  // tomcat 8
		// maven { url "https://repository.apache.org/content/repositories/snapshots" }  // tomcat 8 snapshots
J
Juergen Hoeller 已提交
73
		maven { url "https://maven.java.net/content/repositories/releases" }  // javax.websocket, tyrus
74
		maven { url "https://oss.sonatype.org/content/repositories/snapshots" }  // javax.cache
75
	}
C
Chris Beams 已提交
76

77
	dependencies {
78
		testCompile("junit:junit:${junitVersion}")
79
		testCompile("org.hamcrest:hamcrest-all:1.3")
80
		testCompile("org.mockito:mockito-core:1.9.5")
81
	}
C
Chris Beams 已提交
82 83

	ext.javadocLinks = [
P
Phillip Webb 已提交
84
		"http://docs.oracle.com/javase/7/docs/api/",
J
Juergen Hoeller 已提交
85 86 87 88
		"http://docs.oracle.com/javaee/6/api/",
		"http://docs.oracle.com/cd/E13222_01/wls/docs90/javadocs/", // CommonJ
		"http://pic.dhe.ibm.com/infocenter/wasinfo/v7r0/topic/com.ibm.websphere.javadoc.doc/web/apidocs/",
		"http://glassfish.java.net/nonav/docs/v3/api/",
P
Phillip Webb 已提交
89 90
		"http://docs.jboss.org/jbossas/javadoc/4.0.5/connector/",
		"http://docs.jboss.org/jbossas/javadoc/7.1.2.Final/",
J
Juergen Hoeller 已提交
91 92 93 94 95
		"http://commons.apache.org/proper/commons-lang/javadocs/api-2.5/",
		"http://commons.apache.org/proper/commons-codec/apidocs/",
		"http://commons.apache.org/proper/commons-dbcp/apidocs/",
		"http://portals.apache.org/pluto/portlet-2.0-apidocs/",
		"http://tiles.apache.org/framework/apidocs/",
P
Phillip Webb 已提交
96
		"http://aopalliance.sourceforge.net/doc/",
C
Chris Beams 已提交
97
		"http://www.eclipse.org/aspectj/doc/released/aspectj5rt-api/",
J
Juergen Hoeller 已提交
98 99
		"http://ehcache.org/apidocs/",
		"http://quartz-scheduler.org/api/2.1.7/",
100
		"http://jackson.codehaus.org/1.9.12/javadoc/",
101
		"http://fasterxml.github.com/jackson-core/javadoc/2.2.2/",
C
Chris Beams 已提交
102
	] as String[]
103 104
}

105
configure(subprojects - project(":spring-build-src")) { subproject ->
106
	apply plugin: "merge"
107 108 109
	apply from: "${gradleScriptDir}/publish-maven.gradle"

	jar {
P
Phillip Webb 已提交
110 111 112 113
		manifest.attributes["Created-By"] =
			"${System.getProperty("java.version")} (${System.getProperty("java.specification.vendor")})"
		manifest.attributes["Implementation-Title"] = subproject.name
		manifest.attributes["Implementation-Version"] = subproject.version
114 115 116 117 118

		from("${rootProject.projectDir}/src/dist") {
			include "license.txt"
			include "notice.txt"
			into "META-INF"
P
Phillip Webb 已提交
119
			expand(copyright: new Date().format("yyyy"), version: project.version)
120 121 122 123
		}
	}

	javadoc {
C
Chris Beams 已提交
124 125
		description = "Generates project-level javadoc for use in -javadoc jar"

126 127 128
		options.memberLevel = org.gradle.external.javadoc.JavadocMemberLevel.PROTECTED
		options.author = true
		options.header = project.name
C
Chris Beams 已提交
129
		options.links(project.ext.javadocLinks)
130
		options.addStringOption('Xdoclint:none', '-quiet')
C
Chris Beams 已提交
131 132 133 134 135

		// suppress warnings due to cross-module @see and @link references;
		// note that global 'api' task does display all warnings.
		logging.captureStandardError LogLevel.INFO
		logging.captureStandardOutput LogLevel.INFO // suppress "## warnings" message
136 137 138
	}

	task sourcesJar(type: Jar, dependsOn:classes) {
P
Phillip Webb 已提交
139
		classifier = "sources"
140
		from sourceSets.main.allJava.srcDirs
P
Phillip Webb 已提交
141
		include "**/*.java", "**/*.aj"
142 143 144
	}

	task javadocJar(type: Jar) {
P
Phillip Webb 已提交
145
		classifier = "javadoc"
146 147 148 149 150 151 152
		from javadoc
	}

	artifacts {
		archives sourcesJar
		archives javadocJar
	}
C
Chris Beams 已提交
153 154
}

155 156
project("spring-build-src") {
	description = "Exposes gradle buildSrc for IDE support"
157
	apply plugin: "groovy"
158 159 160

	dependencies {
		compile gradleApi()
R
Rob Winch 已提交
161
		compile localGroovy()
162 163 164 165 166
	}

	configurations.archives.artifacts.clear()
}

P
Phillip Webb 已提交
167 168
project("spring-core") {
	description = "Spring Core"
169

170
	// As of Spring 4.0, spring-core includes asm 4.2 and repackages cglib 3.0, inlining
171
	// both into the spring-core jar. cglib 3.0 itself depends on asm 4, and is therefore
172
	// further transformed by the JarJar task to depend on org.springframework.asm; this
173
	// avoids including two different copies of asm unnecessarily.
P
Phillip Webb 已提交
174
	def cglibVersion = "3.0"
175
	def objenesisVersion = "2.0"
176 177 178 179

	configurations {
		jarjar
		cglib
180
		objenesis
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
	}

	task cglibRepackJar(type: Jar) { repackJar ->
		repackJar.baseName = "spring-cglib-repack"
		repackJar.version = cglibVersion

		doLast() {
			project.ant {
				taskdef name: "jarjar", classname: "com.tonicsystems.jarjar.JarJarTask",
					classpath: configurations.jarjar.asPath
				jarjar(destfile: repackJar.archivePath) {
					configurations.cglib.each { originalJar ->
						zipfileset(src: originalJar)
					}
					// repackage net.sf.cglib => org.springframework.cglib
P
Phillip Webb 已提交
196 197
					rule(pattern: "net.sf.cglib.**", result: "org.springframework.cglib.@1")
					// as mentioned above, transform cglib"s internal asm dependencies from
198 199
					// org.objectweb.asm => org.springframework.asm. Doing this counts on the
					// the fact that Spring and cglib depend on the same version of asm!
P
Phillip Webb 已提交
200
					rule(pattern: "org.objectweb.asm.**", result: "org.springframework.asm.@1")
201 202 203 204 205
				}
			}
		}
	}

206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
	task objenesisRepackJar(type: Jar) { repackJar ->
		repackJar.baseName = "spring-objenesis-repack"
		repackJar.version = objenesisVersion

		doLast() {
			project.ant {
				taskdef name: "jarjar", classname: "com.tonicsystems.jarjar.JarJarTask",
					classpath: configurations.jarjar.asPath
				jarjar(destfile: repackJar.archivePath) {
					configurations.objenesis.each { originalJar ->
						zipfileset(src: originalJar)
					}
					// repackage org.objenesis => org.springframework.objenesis
					rule(pattern: "org.objenesis.**", result: "org.springframework.objenesis.@1")
				}
			}
		}
	}

225
	dependencies {
226
		cglib("cglib:cglib:${cglibVersion}@jar")
227
		objenesis("org.objenesis:objenesis:${objenesisVersion}@jar")
228
		jarjar("com.googlecode.jarjar:jarjar:1.3")
229

P
Phillip Webb 已提交
230
		compile(files(cglibRepackJar))
231
		compile("commons-logging:commons-logging:1.1.1")
232
		optional("org.aspectj:aspectjweaver:${aspectjVersion}")
233
		optional("net.sf.jopt-simple:jopt-simple:4.4")
234
		optional("log4j:log4j:1.2.17")
P
Phillip Webb 已提交
235
		testCompile("xmlunit:xmlunit:1.3")
P
Phillip Webb 已提交
236 237 238
		testCompile("org.codehaus.woodstox:wstx-asl:3.2.7") {
			exclude group: "stax", module: "stax-api"
		}
239 240 241
	}

	jar {
242
		// inline repackaged cglib classes directly into the spring-core jar
243 244
		dependsOn cglibRepackJar
		from(zipTree(cglibRepackJar.archivePath)) {
P
Phillip Webb 已提交
245
			include "org/springframework/cglib/**"
246
		}
247 248 249 250 251

		dependsOn objenesisRepackJar
		from(zipTree(objenesisRepackJar.archivePath)) {
			include "org/springframework/objenesis/**"
		}
252
	}
J
Juergen Hoeller 已提交
253 254 255 256 257 258

	compileTestJava {
		sourceCompatibility=1.8
		targetCompatibility=1.8
		compileTestJava.options.compilerArgs += "-parameters"
	}
C
Chris Beams 已提交
259 260
}

P
Phillip Webb 已提交
261 262
project("spring-beans") {
	description = "Spring Beans"
263

264
	dependencies {
265 266
		compile(project(":spring-core"))
		compile(files(project(":spring-core").cglibRepackJar))
267
		provided("javax.el:javax.el-api:2.2.4")
268 269
		provided("javax.inject:javax.inject:1")
		testCompile("log4j:log4j:1.2.17")
270
	}
C
Chris Beams 已提交
271 272
}

J
Juergen Hoeller 已提交
273 274 275
project('spring-beans-groovy') {
	description 'Groovy Bean Definitions'
	merge.into = project(":spring-beans")
276
	apply plugin: "groovy"
J
Juergen Hoeller 已提交
277 278 279

	dependencies {
		compile(project(":spring-core"))
280
		optional("org.codehaus.groovy:groovy-all:${groovyVersion}")
J
Juergen Hoeller 已提交
281 282 283 284 285 286 287 288 289 290 291
	}

	// this module's Java and Groovy sources need to be compiled together
	compileJava.enabled=false
	sourceSets {
		main {
			groovy {
				srcDir 'src/main/java'
			}
		}
	}
292 293 294 295 296

	compileGroovy {
		sourceCompatibility=1.6
		targetCompatibility=1.6
	}
J
Juergen Hoeller 已提交
297 298
}

P
Phillip Webb 已提交
299 300
project("spring-aop") {
	description = "Spring AOP"
301

302
	dependencies {
303 304
		compile(project(":spring-core"))
		compile(files(project(":spring-core").cglibRepackJar))
305
		compile(files(project(":spring-core").objenesisRepackJar))
306
		compile(project(":spring-beans"))
307
		compile("aopalliance:aopalliance:1.0")
308 309 310
		optional("com.jamonapi:jamon:2.4")
		optional("commons-pool:commons-pool:1.5.3")
		optional("org.aspectj:aspectjweaver:${aspectjVersion}")
311
	}
C
Chris Beams 已提交
312 313
}

P
Phillip Webb 已提交
314 315
project("spring-expression") {
	description = "Spring Expression Language (SpEL)"
316

317
	dependencies {
318
		compile(project(":spring-core"))
319
	}
C
Chris Beams 已提交
320 321
}

P
Phillip Webb 已提交
322 323
project("spring-instrument") {
	description = "Spring Instrument"
324

325
	jar {
P
Phillip Webb 已提交
326 327
		manifest.attributes["Premain-Class"] =
			"org.springframework.instrument.InstrumentationSavingAgent"
328 329 330
		manifest.attributes["Can-Redefine-Classes"] = "true"
		manifest.attributes["Can-Retransform-Classes"] = "true"
		manifest.attributes["Can-Set-Native-Method-Prefix"] = "false"
331
	}
C
Chris Beams 已提交
332 333
}

P
Phillip Webb 已提交
334 335
project("spring-instrument-tomcat") {
	description = "Spring Instrument Tomcat"
336

337
	dependencies {
338
		provided("org.apache.tomcat:catalina:6.0.16")
339
	}
C
Chris Beams 已提交
340 341
}

P
Phillip Webb 已提交
342 343
project("spring-context") {
	description = "Spring Context"
344
	apply plugin: "groovy"
345

346
	dependencies {
347
		optional(project(":spring-instrument"))
348 349 350 351 352
		compile(project(":spring-aop"))
		compile(project(":spring-beans"))
		compile(project(":spring-expression"))
		compile(project(":spring-core"))
		compile(files(project(":spring-core").cglibRepackJar))
353 354
		optional("javax.ejb:ejb-api:3.0")
		optional("javax.inject:javax.inject:1")
355
		optional("javax.enterprise.concurrent:javax.enterprise.concurrent-api:1.0")
356
		optional("org.apache.geronimo.specs:geronimo-jms_1.1_spec:1.1")
357
		optional("org.eclipse.persistence:javax.persistence:2.0.0")
358
		optional("joda-time:joda-time:2.2")
359
		optional("org.beanshell:bsh:2.0b4")
J
Juergen Hoeller 已提交
360
		optional("org.codehaus.groovy:groovy-all:${groovyVersion}")
361
		optional("org.jruby:jruby:1.7.2")
362
		optional("org.slf4j:slf4j-api:${slf4jVersion}")
363
		optional("javax.validation:validation-api:1.0.0.GA")
364
		optional("org.hibernate:hibernate-validator:4.3.0.Final")
365 366
		optional("org.aspectj:aspectjweaver:${aspectjVersion}")
		optional("org.apache.geronimo.specs:geronimo-jta_1.1_spec:1.1")
367
		testCompile("commons-dbcp:commons-dbcp:1.2.2")
368
		testCompile("javax.inject:javax.inject-tck:1")
369 370
	}

371 372 373
	// pick up RmiInvocationWrapperRTD.xml in src/main
	sourceSets.main.resources.srcDirs += "src/main/java"

374
	test {
P
Phillip Webb 已提交
375
		jvmArgs = ["-disableassertions:org.aspectj.weaver.UnresolvedType"] // SPR-7989
376
	}
377 378 379 380 381 382 383 384 385 386
}

project("spring-messaging") {
	description = "Spring Messaging"

	dependencies {
		compile(project(":spring-beans"))
		compile(project(":spring-core"))
		compile(project(":spring-context"))
		optional(project(":spring-websocket"))
387
		optional(project(":spring-webmvc"))
388
		optional("com.fasterxml.jackson.core:jackson-databind:2.2.2")
389 390
		optional("org.projectreactor:reactor-core:1.0.0.BUILD-SNAPSHOT")
		optional("org.projectreactor:reactor-tcp:1.0.0.BUILD-SNAPSHOT")
B
Brian Clozel 已提交
391 392 393 394
		optional("org.eclipse.jetty.websocket:websocket-server:9.1.0.RC0") {
			exclude group: "javax.servlet", module: "javax.servlet-api"
		}
		optional("org.eclipse.jetty.websocket:websocket-client:9.1.0.RC0")
395 396
		testCompile(project(":spring-test"))
		testCompile("com.thoughtworks.xstream:xstream:1.4.4")
397 398
		testCompile("commons-dbcp:commons-dbcp:1.2.2")
		testCompile("javax.inject:javax.inject-tck:1")
399 400
		testCompile("javax.servlet:javax.servlet-api:3.1.0")
		testCompile("log4j:log4j:1.2.17")
401 402 403 404 405
		testCompile("org.apache.activemq:activemq-broker:5.8.0")
		testCompile("org.apache.activemq:activemq-kahadb-store:5.8.0") {
			exclude group: "org.springframework", module: "spring-context"
		}
		testCompile("org.apache.activemq:activemq-stomp:5.8.0")
B
Brian Clozel 已提交
406 407
		testCompile("org.eclipse.jetty:jetty-webapp:9.1.0.RC0") {
			exclude group: "javax.servlet", module: "javax.servlet-api"
408
		}
R
Rossen Stoyanchev 已提交
409 410
		testCompile("org.apache.tomcat.embed:tomcat-embed-core:8.0.0-RC5")
		testCompile("org.apache.tomcat.embed:tomcat-embed-logging-juli:8.0.0-RC5")
411
		testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}")
412
	}
413 414 415 416 417

	repositories {
		maven { url "http://repo.spring.io/snapshot" }  // for reactor (until RC2)
	}

C
Chris Beams 已提交
418 419
}

P
Phillip Webb 已提交
420 421
project("spring-tx") {
	description = "Spring Transaction"
422

423
	dependencies {
424 425
		optional(project(":spring-context")) // for JCA, @EnableTransactionManagement
		optional(project(":spring-aop"))
426 427
		compile(project(":spring-beans"))
		compile(project(":spring-core"))
428
		compile("aopalliance:aopalliance:1.0")
429 430
		provided("com.ibm.websphere:uow:6.0.2.17")
		optional("javax.resource:connector-api:1.5")
431
		optional("javax.transaction:javax.transaction-api:1.2")
432
		optional("javax.ejb:ejb-api:3.0")
433
		testCompile("org.eclipse.persistence:javax.persistence:2.0.0")
434
		testCompile("org.aspectj:aspectjweaver:${aspectjVersion}")
435
	}
C
Chris Beams 已提交
436 437
}

P
Phillip Webb 已提交
438 439 440
project("spring-oxm") {
	description = "Spring Object/XML Marshalling"
	apply from: "oxm.gradle"
441

J
Juergen Hoeller 已提交
442 443 444 445 446 447
    // The following is a work-around until the Gradle build uses
    // Ant 1.9.x by default. This is necessary to avoid the genCastor
    // "Class not found: javac1.8" issue with Ant versions prior to 1.9.x
    ant.properties["build.compiler"] = "javac1.7"

    compileTestJava {
448 449 450 451 452 453
		// necessary to avoid java.lang.VerifyError on jibx compilation
		// see http://jira.codehaus.org/browse/JIBX-465
		sourceCompatibility=1.6
		targetCompatibility=1.6
	}

454
	dependencies {
455 456
		compile(project(":spring-beans"))
		compile(project(":spring-core"))
457
		testCompile(project(":spring-context"))
458 459 460
		optional("com.thoughtworks.xstream:xstream:1.4.4")
		optional("org.jibx:jibx-run:1.2.5")
		optional("org.apache.xmlbeans:xmlbeans:2.6.0")
461
		optional("org.codehaus.castor:castor-xml:1.3.2")
462
		testCompile("org.codehaus.jettison:jettison:1.0.1")
P
Phillip Webb 已提交
463
		testCompile("xmlunit:xmlunit:1.3")
464
		testCompile("xmlpull:xmlpull:1.1.3.4a")
465 466 467 468
		testCompile(files(genCastor.classesDir).builtBy(genCastor))
		testCompile(files(genJaxb.classesDir).builtBy(genJaxb))
		testCompile(files(genXmlbeans.classesDir).builtBy(genXmlbeans))
	}
C
Chris Beams 已提交
469 470
}

P
Phillip Webb 已提交
471 472
project("spring-jms") {
	description = "Spring JMS"
473

474
	dependencies {
475 476 477 478 479
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
		compile(project(":spring-aop"))
		compile(project(":spring-context"))
		compile(project(":spring-tx"))
480
		optional(project(":spring-oxm"))
481
		compile("aopalliance:aopalliance:1.0")
482 483 484
		provided("org.apache.geronimo.specs:geronimo-jms_1.1_spec:1.1")
		optional("org.apache.geronimo.specs:geronimo-jta_1.1_spec:1.1")
		optional("javax.resource:connector-api:1.5")
485
		optional("org.codehaus.jackson:jackson-mapper-asl:1.9.12")
486
		optional("com.fasterxml.jackson.core:jackson-databind:2.2.2")
487
	}
C
Chris Beams 已提交
488 489
}

P
Phillip Webb 已提交
490 491
project("spring-jdbc") {
	description = "Spring JDBC"
492

493
	dependencies {
494 495
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
496
		optional(project(":spring-context")) // for JndiDataSourceLookup
497
		compile(project(":spring-tx"))
498 499 500 501 502 503
		optional("c3p0:c3p0:0.9.1.2")
		optional("hsqldb:hsqldb:${hsqldbVersion}")
		optional("com.h2database:h2:1.0.71")
		optional("org.apache.derby:derby:10.5.3.0_1")
		optional("org.apache.derby:derbyclient:10.5.3.0_1")
		optional("org.apache.geronimo.specs:geronimo-jta_1.1_spec:1.1")
504
	}
C
Chris Beams 已提交
505 506
}

P
Phillip Webb 已提交
507 508
project("spring-context-support") {
	description = "Spring Context Support"
509

510
	dependencies {
511 512 513
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
		compile(project(":spring-context"))
514 515
		optional(project(":spring-jdbc")) // for Quartz support
		optional(project(":spring-tx")) // for Quartz support
516
		optional("javax.mail:mail:1.4.7")
517
		optional("javax.cache:cache-api:0.11-SNAPSHOT")
518 519
		optional("net.sf.ehcache:ehcache-core:2.6.5")
		optional("org.quartz-scheduler:quartz:1.8.6") {
520 521
			exclude group: "org.slf4j", module: "slf4j-log4j12"
		}
522
		optional("org.codehaus.fabric3.api:commonj:1.1.0")
523
		optional("org.apache.velocity:velocity:1.7")
524
		optional("org.freemarker:freemarker:2.3.19")
525
		optional("com.lowagie:itext:2.1.7")
526
		optional("net.sf.jasperreports:jasperreports:5.1.0")
527 528
		optional("org.slf4j:slf4j-api:${slf4jVersion}")
		provided("javax.activation:activation:1.1")
529
		testCompile("org.apache.poi:poi:3.9")
530 531
		testCompile("commons-beanutils:commons-beanutils:1.8.0") // for Velocity/JasperReports
		testCompile("commons-digester:commons-digester:1.8.1") // for Velocity/JasperReports
532
		testCompile("hsqldb:hsqldb:${hsqldbVersion}")
533 534 535
	}

	// pick up **/*.types files in src/main
P
Phillip Webb 已提交
536
	sourceSets.main.resources.srcDirs += "src/main/java"
C
Chris Beams 已提交
537 538
}

P
Phillip Webb 已提交
539 540
project("spring-web") {
	description = "Spring Web"
541

542
	dependencies {
543 544 545 546
		compile(project(":spring-core"))
		compile(project(":spring-beans")) // for MultiPartFilter
		compile(project(":spring-aop")) // for JaxWsPortProxyFactoryBean
		compile(project(":spring-context"))
547
		optional(project(":spring-oxm")) // for MarshallingHttpMessageConverter
548
		compile("aopalliance:aopalliance:1.0")
549
		provided("javax.el:javax.el-api:2.2.4")
550
		provided("com.sun.faces:jsf-api:2.1.7")
551 552 553 554
		provided("javax.portlet:portlet-api:2.0")
		provided("javax.servlet:javax.servlet-api:3.0.1")
		provided("javax.servlet.jsp:jsp-api:2.1")
		provided("javax.activation:activation:1.1")
555
		optional("com.caucho:hessian:4.0.7")
556
		optional("rome:rome:1.0")
557
		optional("commons-fileupload:commons-fileupload:1.3")
558 559
		optional("org.apache.httpcomponents:httpclient:4.3.1")
		optional("org.apache.httpcomponents:httpasyncclient:4.0")
560
		optional("org.codehaus.jackson:jackson-mapper-asl:1.9.12")
561
		optional("com.fasterxml.jackson.core:jackson-databind:2.2.2")
562
		optional("taglibs:standard:1.1.2")
B
Brian Clozel 已提交
563 564
		optional("org.eclipse.jetty:jetty-servlet:9.1.0.RC0") {
			exclude group: "javax.servlet", module: "javax.servlet-api"
565
		}
B
Brian Clozel 已提交
566 567
		optional("org.eclipse.jetty:jetty-server:9.1.0.RC0") {
			exclude group: "javax.servlet", module: "javax.servlet-api"
568
		}
569
		optional("log4j:log4j:1.2.17")
570
		testCompile(project(":spring-context-support"))  // for JafMediaTypeFactory
P
Phillip Webb 已提交
571
		testCompile("xmlunit:xmlunit:1.3")
572 573
		testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}")
		testCompile("log4j:log4j:1.2.17")
574 575 576
	}

	// pick up ContextLoader.properties in src/main
P
Phillip Webb 已提交
577
	sourceSets.main.resources.srcDirs += "src/main/java"
C
Chris Beams 已提交
578 579
}

580
project("spring-websocket") {
581
	description = "Spring WebSocket"
582 583 584 585 586

	dependencies {
		compile(project(":spring-core"))
		compile(project(":spring-context"))
		compile(project(":spring-web"))
587
		optional(project(":spring-webmvc"))
588
		optional("javax.servlet:javax.servlet-api:3.1.0")
589
		optional("javax.websocket:javax.websocket-api:1.0")
R
Rossen Stoyanchev 已提交
590
		optional("org.apache.tomcat:tomcat-websocket:8.0.0-RC5") {
591 592 593
			exclude group: "org.apache.tomcat", module: "tomcat-websocket-api"
			exclude group: "org.apache.tomcat", module: "tomcat-servlet-api"
		}
594 595
		optional("org.glassfish.tyrus:tyrus-websocket-core:1.2.1")
		optional("org.glassfish.tyrus:tyrus-container-servlet:1.2.1")
B
Brian Clozel 已提交
596 597 598 599 600
		optional("org.eclipse.jetty:jetty-webapp:9.1.0.RC0") {
			exclude group: "javax.servlet", module: "javax.servlet"
		}
		optional("org.eclipse.jetty.websocket:websocket-server:9.1.0.RC0") {
			exclude group: "javax.servlet", module: "javax.servlet"
601
		}
B
Brian Clozel 已提交
602
		optional("org.eclipse.jetty.websocket:websocket-client:9.1.0.RC0")
603
		optional("com.fasterxml.jackson.core:jackson-databind:2.2.2")
R
Rossen Stoyanchev 已提交
604
		optional("org.codehaus.jackson:jackson-mapper-asl:1.9.12")
R
Rossen Stoyanchev 已提交
605
		testCompile("org.apache.tomcat.embed:tomcat-embed-core:8.0.0-RC5")
606 607
		testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}")
		testCompile("log4j:log4j:1.2.17")
608 609 610
	}
}

P
Phillip Webb 已提交
611 612
project("spring-orm") {
	description = "Spring Object/Relational Mapping"
613

614 615
	dependencies {
		compile("aopalliance:aopalliance:1.0")
616 617 618 619 620 621
		optional("org.eclipse.persistence:javax.persistence:2.0.0")
		optional("org.eclipse.persistence:org.eclipse.persistence.core:2.4.0")
		optional("org.eclipse.persistence:org.eclipse.persistence.jpa:2.4.0")
		optional("org.hibernate:hibernate-core:3.6.9.Final")
		optional("org.hibernate:hibernate-entitymanager:3.6.9.Final")
		optional("org.apache.openjpa:openjpa:2.2.1")
622
		optional("javax.jdo:jdo-api:3.0")
623
		provided("javax.servlet:javax.servlet-api:3.0.1")
624 625
		testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}")
		testCompile("commons-dbcp:commons-dbcp:1.2.2")
626
		testCompile("hsqldb:hsqldb:${hsqldbVersion}")
627 628
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
629 630
		optional(project(":spring-aop"))
		optional(project(":spring-context"))
631 632
		compile(project(":spring-tx"))
		compile(project(":spring-jdbc"))
633
		optional(project(":spring-web"))
634
	}
C
Chris Beams 已提交
635 636
}

P
Phillip Webb 已提交
637 638
project("spring-orm-hibernate4") {
	description = "Spring Object/Relational Mapping - Hibernate 4 support"
639
	merge.into = project(":spring-orm")
640

641
	dependencies {
642 643
		provided(project(":spring-tx"))
		provided(project(":spring-jdbc"))
J
Juergen Hoeller 已提交
644 645
		optional("org.hibernate:hibernate-core:4.2.2.Final")
		optional("org.hibernate:hibernate-entitymanager:4.2.2.Final")
646
		optional(project(":spring-web"))
647
		optional("javax.servlet:javax.servlet-api:3.0.1")
648
	}
649 650
}

P
Phillip Webb 已提交
651 652
project("spring-webmvc") {
	description = "Spring Web MVC"
653

654
	dependencies {
655
		compile(project(":spring-core"))
656
		compile(files(project(":spring-core").objenesisRepackJar))
657 658 659 660
		compile(project(":spring-expression"))
		compile(project(":spring-beans"))
		compile(project(":spring-web"))
		compile(project(":spring-context"))
661 662 663 664 665 666 667
		optional(project(":spring-context-support")) // for Velocity support
		optional(project(":spring-oxm")) // for MarshallingView
		optional("org.apache.tiles:tiles-api:2.1.2")
		optional("org.apache.tiles:tiles-core:2.1.2")
		optional("org.apache.tiles:tiles-jsp:2.1.2")
		optional("org.apache.tiles:tiles-servlet:2.1.2")
		optional("net.sourceforge.jexcelapi:jxl:2.6.3")
668
		optional("org.apache.poi:poi:3.9")
669
		optional("com.lowagie:itext:2.1.7")
670
		optional("net.sf.jasperreports:jasperreports:5.1.0") {
671
			exclude group: "xml-apis", module: "xml-apis"
672
		}
673
		optional("rome:rome:1.0")
674 675
		optional("org.apache.velocity:velocity:1.7")
		optional("velocity-tools:velocity-tools-view:1.4")
676 677
		optional("org.freemarker:freemarker:2.3.19")
		optional("org.codehaus.jackson:jackson-mapper-asl:1.9.12")
678
		optional("com.fasterxml.jackson.core:jackson-databind:2.2.2")
679 680 681
		provided("javax.servlet:jstl:1.2")
		provided("javax.servlet:javax.servlet-api:3.0.1")
		provided("javax.servlet.jsp:jsp-api:2.1")
682 683 684
		testCompile(project(":spring-aop"))
		testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}")
		testCompile("rhino:js:1.7R1")
P
Phillip Webb 已提交
685
		testCompile("xmlunit:xmlunit:1.3")
686
		testCompile("dom4j:dom4j:1.6.1") {
P
Phillip Webb 已提交
687
			exclude group: "xml-apis", module: "xml-apis"
688 689
		}
		testCompile("jaxen:jaxen:1.1.1") {
P
Phillip Webb 已提交
690 691 692
			exclude group: "xml-apis", module: "xml-apis"
			exclude group: "xom", module: "xom"
			exclude group: "xerces", module: "xercesImpl"
693
		}
B
Brian Clozel 已提交
694 695
		testCompile("org.eclipse.jetty:jetty-servlet:9.1.0.RC0") {
			exclude group: "javax.servlet", module: "javax.servlet"
696
		}
B
Brian Clozel 已提交
697 698
		testCompile("org.eclipse.jetty:jetty-server:9.1.0.RC0") {
			exclude group: "javax.servlet", module: "javax.servlet"
699 700 701 702 703
		}
		testCompile("javax.validation:validation-api:1.0.0.GA")
		testCompile("commons-fileupload:commons-fileupload:1.2")
		testCompile("commons-io:commons-io:1.3")
		testCompile("org.hibernate:hibernate-validator:4.3.0.Final")
704
		testCompile("org.apache.httpcomponents:httpclient:4.3.1")
705
		testCompile("joda-time:joda-time:2.2")
706 707 708
	}

	// pick up DispatcherServlet.properties in src/main
P
Phillip Webb 已提交
709
	sourceSets.main.resources.srcDirs += "src/main/java"
C
Chris Beams 已提交
710 711
}

P
Phillip Webb 已提交
712 713
project("spring-webmvc-tiles3") {
	description = "Spring Framework Tiles3 Integration"
714
	merge.into = project(":spring-webmvc")
715

716
	dependencies {
717 718
		provided(project(":spring-context"))
		provided(project(":spring-web"))
719
		provided("javax.el:javax.el-api:2.2.4")
720 721 722 723 724
		provided("javax.servlet:jstl:1.2")
		provided("javax.servlet.jsp:jsp-api:2.1")
		optional("org.apache.tiles:tiles-request-api:1.0.1")
		optional("org.apache.tiles:tiles-api:3.0.1")
		optional("org.apache.tiles:tiles-core:3.0.1") {
P
Phillip Webb 已提交
725
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
726
		}
727
		optional("org.apache.tiles:tiles-servlet:3.0.1") {
P
Phillip Webb 已提交
728
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
729
		}
730
		optional("org.apache.tiles:tiles-jsp:3.0.1") {
P
Phillip Webb 已提交
731
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
732 733 734
		}
		optional("org.apache.tiles:tiles-extras:3.0.1") {
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
P
Polish  
Phillip Webb 已提交
735
			exclude group: "org.springframework", module: "spring-web"
736
		}
737
		optional("org.apache.tiles:tiles-el:3.0.1") {
P
Phillip Webb 已提交
738
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
739
		}
740 741
		provided("javax.servlet:javax.servlet-api:3.0.1")
		testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}")
742
	}
743 744
}

P
Phillip Webb 已提交
745 746
project("spring-webmvc-portlet") {
	description = "Spring Web Portlet"
747

748
	dependencies {
749
		provided("javax.servlet:javax.servlet-api:3.0.1")
750
		provided("javax.portlet:portlet-api:2.0")
751 752 753 754 755
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
		compile(project(":spring-context"))
		compile(project(":spring-web"))
		compile(project(":spring-webmvc"))
756
		optional("commons-fileupload:commons-fileupload:1.2")
757 758 759
	}

	// pick up DispatcherPortlet.properties in src/main
P
Phillip Webb 已提交
760
	sourceSets.main.resources.srcDirs += "src/main/java"
C
Chris Beams 已提交
761 762
}

P
Phillip Webb 已提交
763 764
project("spring-test") {
	description = "Spring TestContext Framework"
765

766
	dependencies {
767
		compile(project(":spring-core"))
768 769 770 771 772 773 774
		optional(project(":spring-beans"))
		optional(project(":spring-context"))
		optional(project(":spring-jdbc"))
		optional(project(":spring-tx"))
		optional(project(":spring-orm"))
		optional(project(":spring-web"))
		optional(project(":spring-webmvc"))
B
Brian Clozel 已提交
775
		optional(project(":spring-webmvc-portlet"))
776
		optional("junit:junit:${junitVersion}")
S
Sam Brannen 已提交
777
		optional("org.testng:testng:6.8.5")
778
		optional("javax.servlet:javax.servlet-api:3.0.1")
779 780
		optional("javax.servlet.jsp:jsp-api:2.1")
		optional("javax.portlet:portlet-api:2.0")
781
		optional("org.eclipse.persistence:javax.persistence:2.0.0")
782
		optional("org.aspectj:aspectjweaver:${aspectjVersion}")
783
		testCompile("org.hibernate:hibernate-core:3.6.9.Final")
784 785 786 787 788
		provided("javax.inject:javax.inject:1")
		provided("javax.activation:activation:1.1")
		provided("javax.servlet:jstl:1.2")
		testCompile "org.slf4j:slf4j-jcl:${slf4jVersion}"
		testCompile("hsqldb:hsqldb:${hsqldbVersion}")
789
	}
790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808

	task testNG(type: Test) {
		useTestNG()
		scanForTestClasses = false
		include "**/testng/*.*"
		exclude "**/FailingBeforeAndAfterMethodsTests.class"
		// "TestCase" classes are run by other test classes, not the build.
		exclude "**/*TestCase.class"
		// Generate TestNG reports alongside JUnit reports.
		testReport true
	}

	test {
		dependsOn testNG
		useJUnit()
		exclude "**/testng/*.*"
		// "TestCase" classes are run by other test classes, not the build.
		exclude(["**/*TestCase.class", "**/*TestSuite.class"])
	}
C
Chris Beams 已提交
809 810
}

P
Phillip Webb 已提交
811 812
project("spring-test-mvc") {
	description = "Spring Test MVC Framework"
813
	merge.into = project(":spring-test")
814

815
	dependencies {
816
		optional(project(":spring-context"))
817
		provided(project(":spring-webmvc"))
B
Brian Clozel 已提交
818
		provided(project(":spring-webmvc-tiles3"))
819 820
		provided("javax.servlet:javax.servlet-api:3.0.1")
		optional("org.hamcrest:hamcrest-core:1.3")
B
Brian Clozel 已提交
821
		optional("com.jayway.jsonpath:json-path:0.9.0")
P
Phillip Webb 已提交
822
		optional("xmlunit:xmlunit:1.3")
823
		testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}")
824 825
		testCompile("javax.servlet:jstl:1.2")
		testCompile("org.hibernate:hibernate-validator:4.3.0.Final")
826
		testCompile("org.codehaus.jackson:jackson-mapper-asl:1.9.12")
827
		testCompile("com.fasterxml.jackson.core:jackson-databind:2.2.2")
828
		testCompile(project(":spring-context-support"))
829
		testCompile(project(":spring-oxm"))
830
		testCompile("com.thoughtworks.xstream:xstream:1.4.4")
831
		testCompile("rome:rome:1.0")
832
		testCompile("javax.activation:activation:1.1")
833
		testCompile("javax.mail:mail:1.4.7")
834 835
		testCompile("org.apache.tiles:tiles-request-api:1.0.1")
		testCompile("org.apache.tiles:tiles-api:3.0.1")
836
		testCompile("org.apache.tiles:tiles-core:3.0.1") {
P
Phillip Webb 已提交
837
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
838 839
		}
		testCompile("org.apache.tiles:tiles-servlet:3.0.1") {
P
Phillip Webb 已提交
840
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
841 842
		}
	}
R
Rob Winch 已提交
843 844
}

P
Phillip Webb 已提交
845 846 847
project("spring-aspects") {
	description = "Spring Aspects"
	apply from: "aspects.gradle"
848

849
	dependencies {
850 851 852 853 854 855
		optional(project(":spring-beans")) // for @Configurable support
		optional(project(":spring-aop")) // for @Async support
		optional(project(":spring-context")) // for @Enable* support
		compile(project(":spring-context-support")) // for JavaMail support
		optional(project(":spring-tx")) // for JPA, @Transactional support
		optional(project(":spring-orm")) // for JPA exception translation support
856
		aspects(project(":spring-orm"))
857
		provided("org.eclipse.persistence:javax.persistence:2.0.0")
858
		testCompile("javax.mail:mail:1.4.7")
859
		ajc("org.aspectj:aspectjtools:${aspectjVersion}")
C
Chris Beams 已提交
860
		rt("org.aspectj:aspectjrt:${aspectjVersion}")
861 862 863 864
		compile("org.aspectj:aspectjweaver:${aspectjVersion}")
		testCompile(project(":spring-core")) // for CodeStyleAspect
		compile(project(":spring-beans")) // for "p" namespace visibility
		testCompile(project(":spring-test"))
865
	}
866

867
	eclipse.project {
P
Phillip Webb 已提交
868
		natures += "org.eclipse.ajdt.ui.ajnature"
869
		buildCommands = [new org.gradle.plugins.ide.eclipse.model.
P
Phillip Webb 已提交
870
				BuildCommand("org.eclipse.ajdt.core.ajbuilder")]
871
	}
C
Chris Beams 已提交
872 873
}

874
configure(rootProject) {
P
Phillip Webb 已提交
875
	description = "Spring Framework"
876

R
Rob Winch 已提交
877
    apply plugin: "asciidoctor"
878
	apply plugin: "groovy"
R
Rob Winch 已提交
879

880
	// apply plugin: "detect-split-packages"
881 882
	apply from: "${gradleScriptDir}/jdiff.gradle"

R
Rob Winch 已提交
883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898
	asciidoctor {
		options = [
				eruby: 'erubis',
				attributes: [
						copycss : '',
						icons : 'font',
						'source-highlighter': 'prettify',
						sectanchors : '',
						toc2: '',
						idprefix: '',
						idseparator: '-',
						doctype: 'book',
						'spring-version' : project.version,
						revnumber : project.version
				]
		]
899 900
	}

901 902 903 904 905
	// TODO: DetectSplitPackagesPlugin fails in line 154 due to method not found on java.io.File.
	// TODO: Possibly related to user rights or OS differences; passes on local Windows machine.
	// detectSplitPackages {
	//	projectsToScan -= project(":spring-instrument-tomcat")
	// }
906

C
Chris Beams 已提交
907
	// don't publish the default jar for the root project
908 909 910
	configurations.archives.artifacts.clear()

	dependencies { // for integration tests
911 912 913 914 915 916 917 918 919 920
		testCompile(project(":spring-core"))
		testCompile(project(":spring-beans"))
		testCompile(project(":spring-aop"))
		testCompile(project(":spring-expression"))
		testCompile(project(":spring-context"))
		testCompile(project(":spring-tx"))
		testCompile(project(":spring-jdbc"))
		testCompile(project(":spring-test"))
		testCompile(project(":spring-web"))
		testCompile(project(":spring-webmvc-portlet"))
921
		testCompile(project(":spring-orm"))
J
Juergen Hoeller 已提交
922
		testCompile("org.hibernate:hibernate-core:4.2.2.Final")
923
		testCompile("javax.servlet:javax.servlet-api:3.0.1")
924 925 926 927 928
		testCompile("javax.portlet:portlet-api:2.0")
		testCompile("javax.inject:javax.inject:1")
		testCompile("javax.resource:connector-api:1.5")
		testCompile("org.aspectj:aspectjweaver:${aspectjVersion}")
		testCompile("hsqldb:hsqldb:${hsqldbVersion}")
929 930 931
	}

	task api(type: Javadoc) {
P
Phillip Webb 已提交
932 933
		group = "Documentation"
		description = "Generates aggregated Javadoc API documentation."
934
		title = "${rootProject.description} ${version} API"
C
Chris Beams 已提交
935

936 937 938 939 940
		dependsOn {
			subprojects.collect {
				it.tasks.getByName("jar")
			}
		}
941 942 943
		options.memberLevel = org.gradle.external.javadoc.JavadocMemberLevel.PROTECTED
		options.author = true
		options.header = rootProject.description
P
Phillip Webb 已提交
944
		options.overview = "src/api/overview.html"
945
		options.stylesheetFile = file("src/api/stylesheet.css")
946
		options.splitIndex = true
C
Chris Beams 已提交
947
		options.links(project.ext.javadocLinks)
948
		options.addStringOption('Xdoclint:none', '-quiet')
C
Chris Beams 已提交
949

950 951 952
		source subprojects.collect { project ->
			project.sourceSets.main.allJava
		}
C
Chris Beams 已提交
953

P
Phillip Webb 已提交
954
		maxMemory = "1024m"
C
Chris Beams 已提交
955
		destinationDir = new File(buildDir, "api")
956 957 958 959 960 961 962 963 964 965 966 967

		doFirst {
			classpath = files(
				// ensure servlet 3.x and Hibernate 4.x have precedence on the Javadoc
				// classpath over their respective 2.5 and 3.x variants
				project(":spring-webmvc").sourceSets.main.compileClasspath.files.find { it =~ "servlet-api" },
				rootProject.sourceSets.test.compileClasspath.files.find { it =~ "hibernate-core" },
				// ensure the javadoc process can resolve types compiled from .aj sources
				project(":spring-aspects").sourceSets.main.output
			)
			classpath += files(subprojects.collect { it.sourceSets.main.compileClasspath })
		}
968 969
	}

R
Rob Winch 已提交
970
	task docsZip(type: Zip, dependsOn: 'asciidoctor') {
P
Phillip Webb 已提交
971 972 973
		group = "Distribution"
		baseName = "spring-framework"
		classifier = "docs"
974 975 976
		description = "Builds -${classifier} archive containing api and reference " +
			"for deployment at http://static.springframework.org/spring-framework/docs."

P
Phillip Webb 已提交
977 978
		from("src/dist") {
			include "changelog.txt"
979 980 981
		}

		from (api) {
982
			into "javadoc-api"
983 984
		}

R
Rob Winch 已提交
985 986 987 988
		from (asciidoctor.outputDir) {
            exclude "build"
            exclude "Guardfile"
			into "spring-framework-reference/htmlsingle"
989 990 991 992
		}
	}

	task schemaZip(type: Zip) {
P
Phillip Webb 已提交
993 994 995
		group = "Distribution"
		baseName = "spring-framework"
		classifier = "schema"
996 997 998 999 1000 1001 1002
		description = "Builds -${classifier} archive containing all " +
			"XSDs for deployment at http://springframework.org/schema."

		subprojects.each { subproject ->
			def Properties schemas = new Properties();

			subproject.sourceSets.main.resources.find {
P
Phillip Webb 已提交
1003
				it.path.endsWith("META-INF/spring.schemas")
1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020
			}?.withInputStream { schemas.load(it) }

			for (def key : schemas.keySet()) {
				def shortName = key.replaceAll(/http.*schema.(.*).spring-.*/, '$1')
				assert shortName != key
				File xsdFile = subproject.sourceSets.main.resources.find {
					it.path.endsWith(schemas.get(key))
				}
				assert xsdFile != null
				into (shortName) {
					from xsdFile.path
				}
			}
		}
	}

	task distZip(type: Zip, dependsOn: [docsZip, schemaZip]) {
P
Phillip Webb 已提交
1021 1022 1023
		group = "Distribution"
		baseName = "spring-framework"
		classifier = "dist"
1024 1025 1026 1027 1028
		description = "Builds -${classifier} archive, containing all jars and docs, " +
					"suitable for community download page."

		ext.baseDir = "${baseName}-${project.version}";

P
Phillip Webb 已提交
1029 1030 1031 1032
		from("src/dist") {
			include "readme.txt"
			include "license.txt"
			include "notice.txt"
1033
			into "${baseDir}"
P
Phillip Webb 已提交
1034
			expand(copyright: new Date().format("yyyy"), version: project.version)
1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047
		}

		from(zipTree(docsZip.archivePath)) {
			into "${baseDir}/docs"
		}

		from(zipTree(schemaZip.archivePath)) {
			into "${baseDir}/schema"
		}

		subprojects.each { subproject ->
			into ("${baseDir}/libs") {
				from subproject.jar
P
Phillip Webb 已提交
1048
				if (subproject.tasks.findByPath("sourcesJar")) {
1049 1050
					from subproject.sourcesJar
				}
P
Phillip Webb 已提交
1051
				if (subproject.tasks.findByPath("javadocJar")) {
1052 1053 1054 1055 1056 1057 1058 1059 1060
					from subproject.javadocJar
				}
			}
		}
	}

	// Create an distribution that contains all dependencies (required and optional).
	// Not published by default; only for use when building from source.
	task depsZip(type: Zip, dependsOn: distZip) { zipTask ->
P
Phillip Webb 已提交
1061 1062 1063
		group = "Distribution"
		baseName = "spring-framework"
		classifier = "dist-with-deps"
1064 1065 1066 1067 1068 1069 1070 1071 1072 1073
		description = "Builds -${classifier} archive, containing everything " +
			"in the -${distZip.classifier} archive plus all runtime dependencies."

		from zipTree(distZip.archivePath)

		gradle.taskGraph.whenReady { taskGraph ->
			if (taskGraph.hasTask(":${zipTask.name}")) {
				def projectNames = rootProject.subprojects*.name
				def artifacts = new HashSet()
				subprojects.each { subproject ->
1074 1075
					(subproject.configurations.runtime.resolvedConfiguration.resolvedArtifacts +
					subproject.configurations.optional.resolvedConfiguration.resolvedArtifacts).each { artifact ->
1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096
						def dependency = artifact.moduleVersion.id
						if (!projectNames.contains(dependency.name)) {
							artifacts << artifact.file
						}
					}
				}

				zipTask.from(artifacts) {
					into "${distZip.baseDir}/deps"
				}
			}
		}
	}

	artifacts {
		archives docsZip
		archives schemaZip
		archives distZip
	}

	task wrapper(type: Wrapper) {
P
Phillip Webb 已提交
1097
		description = "Generates gradlew[.bat] scripts"
R
Rob Winch 已提交
1098
		gradleVersion = "1.6"
1099 1100

		doLast() {
1101
			def gradleOpts = "-XX:MaxMetaspaceSize=1024m -Xmx1024m"
1102
			def gradleBatOpts = "$gradleOpts -XX:MaxHeapSize=256m"
P
Phillip Webb 已提交
1103
			File wrapperFile = file("gradlew")
1104 1105
			wrapperFile.text = wrapperFile.text.replace("DEFAULT_JVM_OPTS=",
				"GRADLE_OPTS=\"$gradleOpts \$GRADLE_OPTS\"\nDEFAULT_JVM_OPTS=")
P
Phillip Webb 已提交
1106
			File wrapperBatFile = file("gradlew.bat")
1107 1108 1109 1110
			wrapperBatFile.text = wrapperBatFile.text.replace("set DEFAULT_JVM_OPTS=",
				"set GRADLE_OPTS=$gradleBatOpts %GRADLE_OPTS%\nset DEFAULT_JVM_OPTS=")
		}
	}
1111

1112
}
1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124

/*
 * Support publication of artifacts versioned by topic branch.
 * CI builds supply `-P BRANCH_NAME=<TOPIC>` to gradle at build time.
 * If <TOPIC> starts with 'SPR-', change version
 *     from BUILD-SNAPSHOT => <TOPIC>-SNAPSHOT
 *     e.g. 3.2.1.BUILD-SNAPSHOT => 3.2.1.SPR-1234-SNAPSHOT
 */
def qualifyVersionIfNecessary(version) {
	if (rootProject.hasProperty("BRANCH_NAME")) {
		def qualifier = rootProject.getProperty("BRANCH_NAME")
		if (qualifier.startsWith("SPR-")) {
1125
			return version.replace('BUILD', qualifier)
1126 1127
		}
	}
1128
	return version
1129
}