build.gradle 30.8 KB
Newer Older
1
buildscript {
2
	repositories {
P
Phillip Webb 已提交
3
		maven { url "http://repo.springsource.org/plugins-release" }
4 5
	}
	dependencies {
6
		classpath("org.springframework.build.gradle:propdeps-plugin:0.0.3")
7
		classpath("org.springframework.build.gradle:docbook-reference-plugin:0.2.6")
8
	}
9 10
}

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

S
Sam Brannen 已提交
15 16 17 18 19
	// The following is a work-around until the Gradle build uses
	// Ant 1.9.x by default. This is necessary to avoid the
	// "Class not found: javac1.8" issue with Ant versions prior to 1.9.x
	ant.properties["build.compiler"] = "javac1.7"

R
Rob Winch 已提交
20
	ext.aspectjVersion  = "1.7.2"
P
Phillip Webb 已提交
21 22 23
	ext.hsqldbVersion   = "1.8.0.10"
	ext.junitVersion    = "4.11"
	ext.slf4jVersion    = "1.6.1"
24
	ext.gradleScriptDir = "${rootProject.projectDir}/gradle"
25

26
	apply plugin: "propdeps"
P
Phillip Webb 已提交
27
	apply plugin: "java"
28
	apply plugin: "test-source-set-dependencies"
29
	apply from: "${gradleScriptDir}/ide.gradle"
C
Chris Beams 已提交
30

31
	compileJava {
32 33
		sourceCompatibility=1.6
		targetCompatibility=1.6
34 35
	}
	compileTestJava {
36 37
		sourceCompatibility=1.8
		targetCompatibility=1.8
38
	}
C
Chris Beams 已提交
39

40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
	[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 已提交
60

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

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

71 72 73
	repositories {
		maven { url "http://repo.springsource.org/libs-release" }
	}
C
Chris Beams 已提交
74

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

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

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

	jar {
P
Phillip Webb 已提交
107 108 109 110
		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
111 112 113 114 115

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

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

123 124 125
		options.memberLevel = org.gradle.external.javadoc.JavadocMemberLevel.PROTECTED
		options.author = true
		options.header = project.name
C
Chris Beams 已提交
126 127 128 129 130 131
		options.links(project.ext.javadocLinks)

		// 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
132 133 134
	}

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

	task javadocJar(type: Jar) {
P
Phillip Webb 已提交
141
		classifier = "javadoc"
142 143 144 145 146 147 148
		from javadoc
	}

	artifacts {
		archives sourcesJar
		archives javadocJar
	}
C
Chris Beams 已提交
149 150
}

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

	dependencies {
		compile gradleApi()
		groovy localGroovy()
	}

	configurations.archives.artifacts.clear()
}

P
Phillip Webb 已提交
163 164
project("spring-core") {
	description = "Spring Core"
165

166 167
	// As of Spring 4.0, spring-core includes asm 4.1 and repackages cglib 3.0, inlining
	// both into the spring-core jar. cglib 3.0 itself depends on asm 4, and is therefore
168
	// further transformed by the JarJar task to depend on org.springframework.asm; this
169
	// avoids including two different copies of asm unnecessarily.
P
Phillip Webb 已提交
170
	def cglibVersion = "3.0"
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189

	configurations {
		jarjar
		cglib
	}

	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 已提交
190 191
					rule(pattern: "net.sf.cglib.**", result: "org.springframework.cglib.@1")
					// as mentioned above, transform cglib"s internal asm dependencies from
192 193
					// 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 已提交
194
					rule(pattern: "org.objectweb.asm.**", result: "org.springframework.asm.@1")
195 196 197 198 199 200
				}
			}
		}
	}

	dependencies {
201 202
		cglib("cglib:cglib:${cglibVersion}@jar")
		jarjar("com.googlecode.jarjar:jarjar:1.3")
203

204
		compile("commons-logging:commons-logging:1.1.1")
205
		optional("org.aspectj:aspectjweaver:${aspectjVersion}")
206
		optional("net.sf.jopt-simple:jopt-simple:3.0")
207
		optional("log4j:log4j:1.2.17")
P
Phillip Webb 已提交
208
		testCompile("xmlunit:xmlunit:1.3")
P
Phillip Webb 已提交
209 210 211
		testCompile("org.codehaus.woodstox:wstx-asl:3.2.7") {
			exclude group: "stax", module: "stax-api"
		}
212 213 214
	}

	jar {
215
		// inline repackaged cglib classes directly into the spring-core jar
216 217
		dependsOn cglibRepackJar
		from(zipTree(cglibRepackJar.archivePath)) {
P
Phillip Webb 已提交
218
			include "org/springframework/cglib/**"
219 220
		}
	}
C
Chris Beams 已提交
221 222
}

P
Phillip Webb 已提交
223 224
project("spring-beans") {
	description = "Spring Beans"
225

226
	dependencies {
227 228
		compile(project(":spring-core"))
		compile(files(project(":spring-core").cglibRepackJar))
229
		provided("javax.el:javax.el-api:2.2.4")
230 231
		provided("javax.inject:javax.inject:1")
		testCompile("log4j:log4j:1.2.17")
232
	}
C
Chris Beams 已提交
233 234
}

P
Phillip Webb 已提交
235 236
project("spring-aop") {
	description = "Spring AOP"
237

238
	dependencies {
239 240 241
		compile(project(":spring-core"))
		compile(files(project(":spring-core").cglibRepackJar))
		compile(project(":spring-beans"))
242
		compile("aopalliance:aopalliance:1.0")
243 244 245
		optional("com.jamonapi:jamon:2.4")
		optional("commons-pool:commons-pool:1.5.3")
		optional("org.aspectj:aspectjweaver:${aspectjVersion}")
246
	}
C
Chris Beams 已提交
247 248
}

P
Phillip Webb 已提交
249 250
project("spring-expression") {
	description = "Spring Expression Language (SpEL)"
251

252
	dependencies {
253
		compile(project(":spring-core"))
254
	}
C
Chris Beams 已提交
255 256
}

P
Phillip Webb 已提交
257 258
project("spring-instrument") {
	description = "Spring Instrument"
259

260
	dependencies {
261
		compile(project(":spring-core"))
262
	}
263

264
	jar {
P
Phillip Webb 已提交
265 266
		manifest.attributes["Premain-Class"] =
			"org.springframework.instrument.InstrumentationSavingAgent"
267
	}
C
Chris Beams 已提交
268 269
}

P
Phillip Webb 已提交
270 271
project("spring-instrument-tomcat") {
	description = "Spring Instrument Tomcat"
272

273
	dependencies {
274
		provided("org.apache.tomcat:catalina:6.0.16")
275
	}
C
Chris Beams 已提交
276 277
}

P
Phillip Webb 已提交
278 279
project("spring-context") {
	description = "Spring Context"
280

281
	dependencies {
282
		optional(project(":spring-instrument"))
283 284 285 286 287
		compile(project(":spring-aop"))
		compile(project(":spring-beans"))
		compile(project(":spring-expression"))
		compile(project(":spring-core"))
		compile(files(project(":spring-core").cglibRepackJar))
288 289
		optional("javax.ejb:ejb-api:3.0")
		optional("javax.inject:javax.inject:1")
290
		optional("javax.enterprise.concurrent:javax.enterprise.concurrent-api:1.0-b06")
291
		optional("org.apache.geronimo.specs:geronimo-jms_1.1_spec:1.1")
292
		optional("org.eclipse.persistence:javax.persistence:2.0.0")
293 294 295
		optional("org.beanshell:bsh:2.0b4")
		optional("org.codehaus.groovy:groovy-all:1.8.8")
		optional("org.jruby:jruby:1.6.5.1")
296
		optional("joda-time:joda-time:2.2")
297
		optional("org.slf4j:slf4j-api:${slf4jVersion}")
298
		optional("javax.validation:validation-api:1.0.0.GA")
299
		optional("org.hibernate:hibernate-validator:4.3.0.Final")
300 301
		optional("org.aspectj:aspectjweaver:${aspectjVersion}")
		optional("org.apache.geronimo.specs:geronimo-jta_1.1_spec:1.1")
302
		testCompile("commons-dbcp:commons-dbcp:1.2.2")
303
		testCompile("javax.inject:javax.inject-tck:1")
304 305 306
	}

	test {
P
Phillip Webb 已提交
307
		jvmArgs = ["-disableassertions:org.aspectj.weaver.UnresolvedType"] // SPR-7989
308
	}
C
Chris Beams 已提交
309 310
}

P
Phillip Webb 已提交
311 312
project("spring-tx") {
	description = "Spring Transaction"
313

314
	dependencies {
315 316
		optional(project(":spring-context")) // for JCA, @EnableTransactionManagement
		optional(project(":spring-aop"))
317 318
		compile(project(":spring-beans"))
		compile(project(":spring-core"))
319
		compile("aopalliance:aopalliance:1.0")
320 321
		provided("com.ibm.websphere:uow:6.0.2.17")
		optional("javax.resource:connector-api:1.5")
322
		optional("org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.0.0.Alpha1")
323
		optional("javax.ejb:ejb-api:3.0")
324
		testCompile("org.eclipse.persistence:javax.persistence:2.0.0")
325
		testCompile("org.aspectj:aspectjweaver:${aspectjVersion}")
326
	}
C
Chris Beams 已提交
327 328
}

P
Phillip Webb 已提交
329 330 331
project("spring-oxm") {
	description = "Spring Object/XML Marshalling"
	apply from: "oxm.gradle"
332 333 334 335 336 337 338 339

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

340
	dependencies {
341 342
		compile(project(":spring-beans"))
		compile(project(":spring-core"))
343
		optional(project(":spring-context")) // for Jaxb2Marshaller
344
		compile("commons-lang:commons-lang:2.5")
345 346 347 348
		optional("com.thoughtworks.xstream:xstream:1.3.1")
		optional("org.jibx:jibx-run:1.2.3")
		optional("org.apache.xmlbeans:xmlbeans:2.4.0")
		optional("org.codehaus.castor:castor-xml:1.3.2")
349
		testCompile("org.codehaus.jettison:jettison:1.0.1")
P
Phillip Webb 已提交
350
		testCompile("xmlunit:xmlunit:1.3")
351
		testCompile("xmlpull:xmlpull:1.1.3.4a")
352 353 354 355
		testCompile(files(genCastor.classesDir).builtBy(genCastor))
		testCompile(files(genJaxb.classesDir).builtBy(genJaxb))
		testCompile(files(genXmlbeans.classesDir).builtBy(genXmlbeans))
	}
C
Chris Beams 已提交
356 357
}

P
Phillip Webb 已提交
358 359
project("spring-jms") {
	description = "Spring JMS"
360

361
	dependencies {
362 363 364 365 366
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
		compile(project(":spring-aop"))
		compile(project(":spring-context"))
		compile(project(":spring-tx"))
367
		optional(project(":spring-oxm"))
368
		compile("aopalliance:aopalliance:1.0")
369 370 371
		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")
372 373
		optional("org.codehaus.jackson:jackson-mapper-asl:1.4.2")
		optional("com.fasterxml.jackson.core:jackson-databind:2.0.1")
374
	}
C
Chris Beams 已提交
375 376
}

P
Phillip Webb 已提交
377 378
project("spring-jdbc") {
	description = "Spring JDBC"
379

380
	dependencies {
381 382
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
383
		optional(project(":spring-context")) // for JndiDataSourceLookup
384
		compile(project(":spring-tx"))
385 386 387 388 389 390
		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")
391
	}
C
Chris Beams 已提交
392 393
}

P
Phillip Webb 已提交
394 395
project("spring-context-support") {
	description = "Spring Context Support"
396

397
	dependencies {
398 399 400
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
		compile(project(":spring-context"))
401 402 403 404
		optional(project(":spring-jdbc")) // for Quartz support
		optional(project(":spring-tx")) // for Quartz support
		optional("javax.mail:mail:1.4")
		optional("javax.cache:cache-api:0.5")
405 406 407 408
		optional("net.sf.ehcache:ehcache-core:2.6.3")
		optional("org.quartz-scheduler:quartz:1.8.3") {
			exclude group: "org.slf4j", module: "slf4j-log4j12"
		}
409
		optional("org.codehaus.fabric3.api:commonj:1.1.0")
410
		optional("org.apache.velocity:velocity:1.7")
411 412
		optional("org.freemarker:freemarker:2.3.15")
		optional("com.lowagie:itext:2.1.7")
413
		optional("net.sf.jasperreports:jasperreports:5.0.4")
414 415
		optional("org.slf4j:slf4j-api:${slf4jVersion}")
		provided("javax.activation:activation:1.1")
416
		testCompile("org.apache.poi:poi:3.9")
417 418
		testCompile("commons-beanutils:commons-beanutils:1.8.0") // for Velocity/JasperReports
		testCompile("commons-digester:commons-digester:1.8.1") // for Velocity/JasperReports
419
		testCompile("hsqldb:hsqldb:${hsqldbVersion}")
420 421 422
	}

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

P
Phillip Webb 已提交
426 427
project("spring-web") {
	description = "Spring Web"
428
	dependencies {
429 430 431 432
		compile(project(":spring-core"))
		compile(project(":spring-beans")) // for MultiPartFilter
		compile(project(":spring-aop")) // for JaxWsPortProxyFactoryBean
		compile(project(":spring-context"))
433
		optional(project(":spring-oxm")) // for MarshallingHttpMessageConverter
434
		compile("aopalliance:aopalliance:1.0")
435
		provided("javax.el:javax.el-api:2.2.4")
436
		provided("com.sun.faces:jsf-api:2.1.7")
437 438 439 440
		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")
441
		optional("com.caucho:hessian:4.0.7")
442
		optional("rome:rome:1.0")
443
		optional("commons-fileupload:commons-fileupload:1.3")
444 445 446 447 448
		optional("org.apache.httpcomponents:httpclient:4.2")
		optional("org.codehaus.jackson:jackson-mapper-asl:1.4.2")
		optional("com.fasterxml.jackson.core:jackson-databind:2.0.1")
		optional("taglibs:standard:1.1.2")
		optional("org.eclipse.jetty:jetty-servlet:8.1.5.v20120716") {
P
Phillip Webb 已提交
449
			exclude group: "org.eclipse.jetty.orbit", module: "javax.servlet"
450
		}
451
		optional("org.eclipse.jetty:jetty-server:8.1.5.v20120716") {
P
Phillip Webb 已提交
452
			exclude group: "org.eclipse.jetty.orbit", module: "javax.servlet"
453
		}
454
		optional("log4j:log4j:1.2.17")
455
		testCompile(project(":spring-context-support"))  // for JafMediaTypeFactory
P
Phillip Webb 已提交
456
		testCompile("xmlunit:xmlunit:1.3")
457 458 459
	}

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

P
Phillip Webb 已提交
463 464
project("spring-orm") {
	description = "Spring Object/Relational Mapping"
465

466 467
	dependencies {
		compile("aopalliance:aopalliance:1.0")
468 469 470 471 472 473
		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")
474
		optional("javax.jdo:jdo-api:3.0")
475
		provided("javax.servlet:javax.servlet-api:3.0.1")
476 477
		testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}")
		testCompile("commons-dbcp:commons-dbcp:1.2.2")
478
		testCompile("hsqldb:hsqldb:${hsqldbVersion}")
479 480
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
481 482
		optional(project(":spring-aop"))
		optional(project(":spring-context"))
483 484
		compile(project(":spring-tx"))
		compile(project(":spring-jdbc"))
485
		optional(project(":spring-web"))
486
	}
C
Chris Beams 已提交
487 488
}

P
Phillip Webb 已提交
489 490
project("spring-orm-hibernate4") {
	description = "Spring Object/Relational Mapping - Hibernate 4 support"
491
	merge.into = project(":spring-orm")
492

493
	dependencies {
494 495
		provided(project(":spring-tx"))
		provided(project(":spring-jdbc"))
J
Juergen Hoeller 已提交
496 497
		optional("org.hibernate:hibernate-core:4.2.0.Final")
		optional("org.hibernate:hibernate-entitymanager:4.2.0.Final")
498
		optional(project(":spring-web"))
499
		optional("javax.servlet:javax.servlet-api:3.0.1")
500
	}
501 502
}

P
Phillip Webb 已提交
503 504
project("spring-webmvc") {
	description = "Spring Web MVC"
505

506
	dependencies {
507 508 509 510 511
		compile(project(":spring-core"))
		compile(project(":spring-expression"))
		compile(project(":spring-beans"))
		compile(project(":spring-web"))
		compile(project(":spring-context"))
512 513 514 515 516 517 518
		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")
519
		optional("org.apache.poi:poi:3.9")
520
		optional("com.lowagie:itext:2.1.7")
521
		optional("net.sf.jasperreports:jasperreports:5.0.4") {
522
			exclude group: "xml-apis", module: "xml-apis"
523
		}
524
		optional("rome:rome:1.0")
525 526
		optional("org.apache.velocity:velocity:1.7")
		optional("velocity-tools:velocity-tools-view:1.4")
527 528 529 530 531 532
		optional("org.freemarker:freemarker:2.3.15")
		optional("org.codehaus.jackson:jackson-mapper-asl:1.4.2")
		optional("com.fasterxml.jackson.core:jackson-databind:2.0.1")
		provided("javax.servlet:jstl:1.2")
		provided("javax.servlet:javax.servlet-api:3.0.1")
		provided("javax.servlet.jsp:jsp-api:2.1")
533 534 535
		testCompile(project(":spring-aop"))
		testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}")
		testCompile("rhino:js:1.7R1")
P
Phillip Webb 已提交
536
		testCompile("xmlunit:xmlunit:1.3")
537
		testCompile("dom4j:dom4j:1.6.1") {
P
Phillip Webb 已提交
538
			exclude group: "xml-apis", module: "xml-apis"
539 540
		}
		testCompile("jaxen:jaxen:1.1.1") {
P
Phillip Webb 已提交
541 542 543
			exclude group: "xml-apis", module: "xml-apis"
			exclude group: "xom", module: "xom"
			exclude group: "xerces", module: "xercesImpl"
544
		}
545 546 547 548 549 550 551 552 553 554 555
		testCompile("org.eclipse.jetty:jetty-servlet:8.1.5.v20120716") {
			exclude group: "org.eclipse.jetty.orbit", module: "javax.servlet"
		}
		testCompile("org.eclipse.jetty:jetty-server:8.1.5.v20120716") {
			exclude group: "org.eclipse.jetty.orbit", module: "javax.servlet"
		}
		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")
		testCompile("org.apache.httpcomponents:httpclient:4.2")
556 557 558
	}

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

P
Phillip Webb 已提交
562 563
project("spring-webmvc-tiles3") {
	description = "Spring Framework Tiles3 Integration"
564
	merge.into = project(":spring-webmvc")
565

566
	dependencies {
567 568
		provided(project(":spring-context"))
		provided(project(":spring-web"))
569
		provided("javax.el:javax.el-api:2.2.4")
570 571 572 573 574
		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 已提交
575
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
576
		}
577
		optional("org.apache.tiles:tiles-servlet:3.0.1") {
P
Phillip Webb 已提交
578
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
579
		}
580
		optional("org.apache.tiles:tiles-jsp:3.0.1") {
P
Phillip Webb 已提交
581
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
582 583 584
		}
		optional("org.apache.tiles:tiles-extras:3.0.1") {
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
585
		}
586
		optional("org.apache.tiles:tiles-el:3.0.1") {
P
Phillip Webb 已提交
587
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
588
		}
589 590
		provided("javax.servlet:javax.servlet-api:3.0.1")
		testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}")
591
	}
592 593
}

P
Phillip Webb 已提交
594 595
project("spring-webmvc-portlet") {
	description = "Spring Web Portlet"
596

597
	dependencies {
598
		provided("javax.servlet:javax.servlet-api:3.0.1")
599
		provided("javax.portlet:portlet-api:2.0")
600 601 602 603 604
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
		compile(project(":spring-context"))
		compile(project(":spring-web"))
		compile(project(":spring-webmvc"))
605
		optional("commons-fileupload:commons-fileupload:1.2")
606 607 608
	}

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

P
Phillip Webb 已提交
612 613
project("spring-test") {
	description = "Spring TestContext Framework"
614

615
	dependencies {
616
		compile(project(":spring-core"))
617 618 619 620 621 622 623 624
		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"))
		optional(project(":spring-webmvc-portlet"), )
625 626
		optional("junit:junit:${junitVersion}")
		optional("org.testng:testng:6.5.2")
627
		optional("javax.servlet:javax.servlet-api:3.0.1")
628 629
		optional("javax.servlet.jsp:jsp-api:2.1")
		optional("javax.portlet:portlet-api:2.0")
630
		optional("org.eclipse.persistence:javax.persistence:2.0.0")
631
		optional("org.aspectj:aspectjweaver:${aspectjVersion}")
632
		testCompile("org.hibernate:hibernate-core:3.6.9.Final")
633 634 635 636 637
		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}")
638
	}
639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657

	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 已提交
658 659
}

P
Phillip Webb 已提交
660 661
project("spring-test-mvc") {
	description = "Spring Test MVC Framework"
662
	merge.into = project(":spring-test")
663

664
	dependencies {
665
		optional(project(":spring-context"))
666
		provided(project(":spring-webmvc"))
667 668 669
		provided("javax.servlet:javax.servlet-api:3.0.1")
		optional("org.hamcrest:hamcrest-core:1.3")
		optional("com.jayway.jsonpath:json-path:0.8.1")
P
Phillip Webb 已提交
670
		optional("xmlunit:xmlunit:1.3")
671
		testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}")
672 673 674
		testCompile("javax.servlet:jstl:1.2")
		testCompile("org.hibernate:hibernate-validator:4.3.0.Final")
		testCompile("org.codehaus.jackson:jackson-mapper-asl:1.4.2")
675 676
		testCompile("com.fasterxml.jackson.core:jackson-databind:2.0.1")
		testCompile(project(":spring-context-support"))
677 678 679 680
		testCompile(project(":spring-oxm"))
		testCompile("com.thoughtworks.xstream:xstream:1.3.1")
		testCompile("cglib:cglib-nodep:2.2")
		testCompile("rome:rome:1.0")
681 682
		testCompile("javax.activation:activation:1.1")
		testCompile("javax.mail:mail:1.4")
683 684
		testCompile("org.apache.tiles:tiles-request-api:1.0.1")
		testCompile("org.apache.tiles:tiles-api:3.0.1")
685
		testCompile("org.apache.tiles:tiles-core:3.0.1") {
P
Phillip Webb 已提交
686
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
687 688
		}
		testCompile("org.apache.tiles:tiles-servlet:3.0.1") {
P
Phillip Webb 已提交
689
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
690 691
		}
	}
R
Rob Winch 已提交
692 693
}

P
Phillip Webb 已提交
694 695 696
project("spring-aspects") {
	description = "Spring Aspects"
	apply from: "aspects.gradle"
697

698
	dependencies {
699 700 701 702 703 704
		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
705
		aspects(project(":spring-orm"))
706
		provided("org.eclipse.persistence:javax.persistence:2.0.0")
707
		testCompile("javax.mail:mail:1.4")
708
		ajc("org.aspectj:aspectjtools:${aspectjVersion}")
C
Chris Beams 已提交
709
		rt("org.aspectj:aspectjrt:${aspectjVersion}")
710 711 712 713
		compile("org.aspectj:aspectjweaver:${aspectjVersion}")
		testCompile(project(":spring-core")) // for CodeStyleAspect
		compile(project(":spring-beans")) // for "p" namespace visibility
		testCompile(project(":spring-test"))
714
	}
715

716
	eclipse.project {
P
Phillip Webb 已提交
717
		natures += "org.eclipse.ajdt.ui.ajnature"
718
		buildCommands = [new org.gradle.plugins.ide.eclipse.model.
P
Phillip Webb 已提交
719
				BuildCommand("org.eclipse.ajdt.core.ajbuilder")]
720
	}
C
Chris Beams 已提交
721 722
}

723
configure(rootProject) {
P
Phillip Webb 已提交
724
	description = "Spring Framework"
725

P
Phillip Webb 已提交
726
	apply plugin: "docbook-reference"
727
	apply plugin: "groovy"
728
	apply plugin: "detect-split-packages"
729 730 731
	apply from: "${gradleScriptDir}/jdiff.gradle"

	reference {
P
Phillip Webb 已提交
732 733
		sourceDir = file("src/reference/docbook")
		pdfFilename = "spring-framework-reference.pdf"
734 735
	}

736 737
	detectSplitPackages {
		projectsToScan -= project(":spring-instrument-tomcat")
738
	}
739

C
Chris Beams 已提交
740
	// don't publish the default jar for the root project
741 742 743
	configurations.archives.artifacts.clear()

	dependencies { // for integration tests
744 745 746 747 748 749 750 751 752 753
		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"))
754
		testCompile(project(":spring-orm"))
J
Juergen Hoeller 已提交
755
		testCompile("org.hibernate:hibernate-core:4.2.0.Final")
756
		testCompile("javax.servlet:javax.servlet-api:3.0.1")
757 758 759 760 761
		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}")
762 763 764
	}

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

769 770 771 772 773
		dependsOn {
			subprojects.collect {
				it.tasks.getByName("jar")
			}
		}
774 775 776
		options.memberLevel = org.gradle.external.javadoc.JavadocMemberLevel.PROTECTED
		options.author = true
		options.header = rootProject.description
P
Phillip Webb 已提交
777
		options.overview = "src/api/overview.html"
778
		options.stylesheetFile = file("src/api/stylesheet.css")
779
		options.splitIndex = true
C
Chris Beams 已提交
780 781
		options.links(project.ext.javadocLinks)

782 783 784
		source subprojects.collect { project ->
			project.sourceSets.main.allJava
		}
C
Chris Beams 已提交
785

P
Phillip Webb 已提交
786
		maxMemory = "1024m"
C
Chris Beams 已提交
787
		destinationDir = new File(buildDir, "api")
788 789 790 791 792 793 794 795 796 797 798 799

		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 })
		}
800 801 802
	}

	task docsZip(type: Zip) {
P
Phillip Webb 已提交
803 804 805
		group = "Distribution"
		baseName = "spring-framework"
		classifier = "docs"
806 807 808
		description = "Builds -${classifier} archive containing api and reference " +
			"for deployment at http://static.springframework.org/spring-framework/docs."

P
Phillip Webb 已提交
809 810
		from("src/dist") {
			include "changelog.txt"
811 812 813
		}

		from (api) {
814
			into "javadoc-api"
815 816 817
		}

		from (reference) {
818
			into "spring-framework-reference"
819 820 821 822
		}
	}

	task schemaZip(type: Zip) {
P
Phillip Webb 已提交
823 824 825
		group = "Distribution"
		baseName = "spring-framework"
		classifier = "schema"
826 827 828 829 830 831 832
		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 已提交
833
				it.path.endsWith("META-INF/spring.schemas")
834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850
			}?.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 已提交
851 852 853
		group = "Distribution"
		baseName = "spring-framework"
		classifier = "dist"
854 855 856 857 858
		description = "Builds -${classifier} archive, containing all jars and docs, " +
					"suitable for community download page."

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

P
Phillip Webb 已提交
859 860 861 862
		from("src/dist") {
			include "readme.txt"
			include "license.txt"
			include "notice.txt"
863
			into "${baseDir}"
P
Phillip Webb 已提交
864
			expand(copyright: new Date().format("yyyy"), version: project.version)
865 866 867 868 869 870 871 872 873 874 875 876 877
		}

		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 已提交
878
				if (subproject.tasks.findByPath("sourcesJar")) {
879 880
					from subproject.sourcesJar
				}
P
Phillip Webb 已提交
881
				if (subproject.tasks.findByPath("javadocJar")) {
882 883 884 885 886 887 888 889 890
					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 已提交
891 892 893
		group = "Distribution"
		baseName = "spring-framework"
		classifier = "dist-with-deps"
894 895 896 897 898 899 900 901 902 903
		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 ->
904 905
					(subproject.configurations.runtime.resolvedConfiguration.resolvedArtifacts +
					subproject.configurations.optional.resolvedConfiguration.resolvedArtifacts).each { artifact ->
906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926
						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 已提交
927 928
		description = "Generates gradlew[.bat] scripts"
		gradleVersion = "1.3"
929 930 931 932

		doLast() {
			def gradleOpts = "-XX:MaxPermSize=1024m -Xmx1024m"
			def gradleBatOpts = "$gradleOpts -XX:MaxHeapSize=256m"
P
Phillip Webb 已提交
933
			File wrapperFile = file("gradlew")
934 935
			wrapperFile.text = wrapperFile.text.replace("DEFAULT_JVM_OPTS=",
				"GRADLE_OPTS=\"$gradleOpts \$GRADLE_OPTS\"\nDEFAULT_JVM_OPTS=")
P
Phillip Webb 已提交
936
			File wrapperBatFile = file("gradlew.bat")
937 938 939 940
			wrapperBatFile.text = wrapperBatFile.text.replace("set DEFAULT_JVM_OPTS=",
				"set GRADLE_OPTS=$gradleBatOpts %GRADLE_OPTS%\nset DEFAULT_JVM_OPTS=")
		}
	}
941

942
}
943 944 945 946 947 948 949 950 951 952 953 954

/*
 * 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-")) {
955
			return version.replace('BUILD', qualifier)
956 957
		}
	}
958
	return version
959
}