build.gradle 32.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)

R
Rob Winch 已提交
15
	ext.aspectjVersion  = "1.7.2"
P
Phillip Webb 已提交
16 17 18
	ext.hsqldbVersion   = "1.8.0.10"
	ext.junitVersion    = "4.11"
	ext.slf4jVersion    = "1.6.1"
19
	ext.gradleScriptDir = "${rootProject.projectDir}/gradle"
20

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

26
	compileJava {
27 28
		sourceCompatibility=1.6
		targetCompatibility=1.6
29 30 31 32 33
	}
	compileTestJava {
		sourceCompatibility=1.7
		targetCompatibility=1.7
	}
C
Chris Beams 已提交
34

35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
	[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 已提交
55

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

C
Chris Beams 已提交
58 59
	test {
		systemProperty("java.awt.headless", "true")
60
		systemProperty("testGroups", project.properties.get("testGroups"))
C
Chris Beams 已提交
61
	}
C
Chris Beams 已提交
62

63 64 65
	repositories {
		maven { url "http://repo.springsource.org/libs-release" }
	}
C
Chris Beams 已提交
66

67
	dependencies {
68
		testCompile("junit:junit:${junitVersion}")
69
		testCompile("org.hamcrest:hamcrest-all:1.3")
70
		testCompile("org.mockito:mockito-core:1.9.5")
71
	}
C
Chris Beams 已提交
72 73 74 75 76

	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 已提交
77 78 79 80 81 82 83 84
		"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 已提交
85
		"http://www.eclipse.org/aspectj/doc/released/aspectj5rt-api/",
P
Phillip Webb 已提交
86 87 88 89 90
		"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 已提交
91
	] as String[]
92 93
}

94
configure(subprojects - project(":spring-build-src")) { subproject ->
95
	apply plugin: "merge"
96 97 98
	apply from: "${gradleScriptDir}/publish-maven.gradle"

	jar {
P
Phillip Webb 已提交
99 100 101 102
		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
103 104 105 106 107

		from("${rootProject.projectDir}/src/dist") {
			include "license.txt"
			include "notice.txt"
			into "META-INF"
P
Phillip Webb 已提交
108
			expand(copyright: new Date().format("yyyy"), version: project.version)
109 110 111 112
		}
	}

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

115 116 117
		options.memberLevel = org.gradle.external.javadoc.JavadocMemberLevel.PROTECTED
		options.author = true
		options.header = project.name
C
Chris Beams 已提交
118 119 120 121 122 123
		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
124 125 126
	}

	task sourcesJar(type: Jar, dependsOn:classes) {
P
Phillip Webb 已提交
127
		classifier = "sources"
128
		from sourceSets.main.allJava.srcDirs
P
Phillip Webb 已提交
129
		include "**/*.java", "**/*.aj"
130 131 132
	}

	task javadocJar(type: Jar) {
P
Phillip Webb 已提交
133
		classifier = "javadoc"
134 135 136 137 138 139 140
		from javadoc
	}

	artifacts {
		archives sourcesJar
		archives javadocJar
	}
C
Chris Beams 已提交
141 142
}

143 144 145 146 147 148 149 150 151 152 153 154
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 已提交
155 156
project("spring-core") {
	description = "Spring Core"
157 158 159 160 161 162 163

	// As of Spring 3.2 spring-core repackages both asm 4.0 and cglib 3.0 and inlines both
	// into the spring-core jar. cglib 3.0 itself depends on asm 4.0, and is therefore
	// further transformed by the JarJar task to depend on org.springframework.asm; this
	// avoids including two different copies of asm unnecessarily. If however future cglib
	// versions drift from the version of asm used by Spring internally, this duplication
	// will become necessary.
P
Phillip Webb 已提交
164 165
	def asmVersion = "4.0"
	def cglibVersion = "3.0"
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184

	configurations {
		jarjar
		asm
		cglib
	}

	task asmRepackJar(type: Jar) { repackJar ->
		repackJar.baseName = "spring-asm-repack"
		repackJar.version = asmVersion

		doLast() {
			project.ant {
				taskdef name: "jarjar", classname: "com.tonicsystems.jarjar.JarJarTask",
					classpath: configurations.jarjar.asPath
				jarjar(destfile: repackJar.archivePath) {
					configurations.asm.each { originalJar ->
						zipfileset(src: originalJar)
					}
P
Phillip Webb 已提交
185
					rule(pattern: "org.objectweb.asm.**", result: "org.springframework.asm.@1")
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
				}
			}
		}
	}

	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 已提交
204 205
					rule(pattern: "net.sf.cglib.**", result: "org.springframework.cglib.@1")
					// as mentioned above, transform cglib"s internal asm dependencies from
206 207
					// 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 已提交
208
					rule(pattern: "org.objectweb.asm.**", result: "org.springframework.asm.@1")
209 210 211 212 213 214
				}
			}
		}
	}

	dependencies {
215 216 217 218
		asm("org.ow2.asm:asm:${asmVersion}@jar")
		asm("org.ow2.asm:asm-commons:${asmVersion}@jar")
		cglib("cglib:cglib:${cglibVersion}@jar")
		jarjar("com.googlecode.jarjar:jarjar:1.3")
219

220 221
		compile(files(asmRepackJar))
		compile("commons-logging:commons-logging:1.1.1")
222
		optional("org.aspectj:aspectjweaver:${aspectjVersion}")
223
		optional("net.sf.jopt-simple:jopt-simple:3.0")
224
		optional("log4j:log4j:1.2.17")
P
Phillip Webb 已提交
225
		testCompile("xmlunit:xmlunit:1.3")
P
Phillip Webb 已提交
226 227 228
		testCompile("org.codehaus.woodstox:wstx-asl:3.2.7") {
			exclude group: "stax", module: "stax-api"
		}
229 230 231 232 233 234
	}

	jar {
		// inline all repackaged asm and cglib classes directly into the spring-core jar
		dependsOn asmRepackJar
		from(zipTree(asmRepackJar.archivePath)) {
P
Phillip Webb 已提交
235
			include "org/springframework/asm/**"
236 237 238
		}
		dependsOn cglibRepackJar
		from(zipTree(cglibRepackJar.archivePath)) {
P
Phillip Webb 已提交
239
			include "org/springframework/cglib/**"
240 241
		}
	}
C
Chris Beams 已提交
242 243
}

P
Phillip Webb 已提交
244 245
project("spring-beans") {
	description = "Spring Beans"
246
	dependencies {
247 248
		compile(project(":spring-core"))
		compile(files(project(":spring-core").cglibRepackJar))
249
		provided("javax.el:javax.el-api:2.2.4")
250 251
		provided("javax.inject:javax.inject:1")
		testCompile("log4j:log4j:1.2.17")
252
	}
C
Chris Beams 已提交
253 254
}

P
Phillip Webb 已提交
255 256
project("spring-aop") {
	description = "Spring AOP"
257
	dependencies {
258 259 260
		compile(project(":spring-core"))
		compile(files(project(":spring-core").cglibRepackJar))
		compile(project(":spring-beans"))
261
		compile("aopalliance:aopalliance:1.0")
262 263 264
		optional("com.jamonapi:jamon:2.4")
		optional("commons-pool:commons-pool:1.5.3")
		optional("org.aspectj:aspectjweaver:${aspectjVersion}")
265
	}
C
Chris Beams 已提交
266 267
}

P
Phillip Webb 已提交
268 269
project("spring-expression") {
	description = "Spring Expression Language (SpEL)"
270
	dependencies {
271
		compile(project(":spring-core"))
272
	}
C
Chris Beams 已提交
273 274
}

P
Phillip Webb 已提交
275 276
project("spring-instrument") {
	description = "Spring Instrument"
277
	dependencies {
278
		compile(project(":spring-core"))
279 280
	}
	jar {
P
Phillip Webb 已提交
281 282
		manifest.attributes["Premain-Class"] =
			"org.springframework.instrument.InstrumentationSavingAgent"
283
	}
C
Chris Beams 已提交
284 285
}

P
Phillip Webb 已提交
286 287
project("spring-instrument-tomcat") {
	description = "Spring Instrument Tomcat"
288
	dependencies {
289
		provided("org.apache.tomcat:catalina:6.0.16")
290
	}
C
Chris Beams 已提交
291 292
}

P
Phillip Webb 已提交
293 294
project("spring-context") {
	description = "Spring Context"
295
	dependencies {
296
		optional(project(":spring-instrument"))
297 298 299 300 301
		compile(project(":spring-aop"))
		compile(project(":spring-beans"))
		compile(project(":spring-expression"))
		compile(project(":spring-core"))
		compile(files(project(":spring-core").cglibRepackJar))
302 303
		optional("javax.ejb:ejb-api:3.0")
		optional("javax.inject:javax.inject:1")
304
		optional("javax.enterprise.concurrent:javax.enterprise.concurrent-api:1.0-b06")
305
		optional("org.apache.geronimo.specs:geronimo-jms_1.1_spec:1.1")
306
		optional("org.eclipse.persistence:javax.persistence:2.0.0")
307 308 309 310 311
		optional("org.beanshell:bsh:2.0b4")
		optional("org.codehaus.groovy:groovy-all:1.8.8")
		optional("org.jruby:jruby:1.6.5.1")
		optional("joda-time:joda-time:2.1")
		optional("org.slf4j:slf4j-api:${slf4jVersion}")
312
		optional("javax.validation:validation-api:1.0.0.GA")
313
		optional("org.hibernate:hibernate-validator:4.3.0.Final")
314 315
		optional("org.aspectj:aspectjweaver:${aspectjVersion}")
		optional("org.apache.geronimo.specs:geronimo-jta_1.1_spec:1.1")
316
		testCompile("commons-dbcp:commons-dbcp:1.2.2")
317
		testCompile("javax.inject:javax.inject-tck:1")
318 319 320
	}

	test {
P
Phillip Webb 已提交
321
		jvmArgs = ["-disableassertions:org.aspectj.weaver.UnresolvedType"] // SPR-7989
322
	}
C
Chris Beams 已提交
323 324
}

P
Phillip Webb 已提交
325 326
project("spring-tx") {
	description = "Spring Transaction"
327
	dependencies {
328 329
		optional(project(":spring-context")) // for JCA, @EnableTransactionManagement
		optional(project(":spring-aop"))
330 331
		compile(project(":spring-beans"))
		compile(project(":spring-core"))
332
		compile("aopalliance:aopalliance:1.0")
333 334
		provided("com.ibm.websphere:uow:6.0.2.17")
		optional("javax.resource:connector-api:1.5")
335
		optional("org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.0.0.Alpha1")
336
		optional("javax.ejb:ejb-api:3.0")
337
		testCompile("org.eclipse.persistence:javax.persistence:2.0.0")
338
		testCompile("org.aspectj:aspectjweaver:${aspectjVersion}")
339
	}
C
Chris Beams 已提交
340 341
}

P
Phillip Webb 已提交
342 343 344
project("spring-oxm") {
	description = "Spring Object/XML Marshalling"
	apply from: "oxm.gradle"
345 346 347 348 349 350 351 352

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

353
	dependencies {
354 355
		compile(project(":spring-beans"))
		compile(project(":spring-core"))
356
		optional(project(":spring-context")) // for Jaxb2Marshaller
357
		compile("commons-lang:commons-lang:2.5")
358 359 360 361
		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")
362
		testCompile("org.codehaus.jettison:jettison:1.0.1")
P
Phillip Webb 已提交
363
		testCompile("xmlunit:xmlunit:1.3")
364
		testCompile("xmlpull:xmlpull:1.1.3.4a")
365 366 367 368
		testCompile(files(genCastor.classesDir).builtBy(genCastor))
		testCompile(files(genJaxb.classesDir).builtBy(genJaxb))
		testCompile(files(genXmlbeans.classesDir).builtBy(genXmlbeans))
	}
C
Chris Beams 已提交
369 370
}

P
Phillip Webb 已提交
371 372
project("spring-jms") {
	description = "Spring JMS"
373
	dependencies {
374 375 376 377 378
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
		compile(project(":spring-aop"))
		compile(project(":spring-context"))
		compile(project(":spring-tx"))
379
		optional(project(":spring-oxm"))
380
		compile("aopalliance:aopalliance:1.0")
381 382 383
		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")
384 385
		optional("org.codehaus.jackson:jackson-mapper-asl:1.4.2")
		optional("com.fasterxml.jackson.core:jackson-databind:2.0.1")
386
	}
C
Chris Beams 已提交
387 388
}

P
Phillip Webb 已提交
389 390
project("spring-jdbc") {
	description = "Spring JDBC"
391
	dependencies {
392 393
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
394
		optional(project(":spring-context")) // for JndiDataSourceLookup
395
		compile(project(":spring-tx"))
396 397 398 399 400 401
		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")
402
	}
C
Chris Beams 已提交
403 404
}

P
Phillip Webb 已提交
405 406
project("spring-context-support") {
	description = "Spring Context Support"
407
	dependencies {
408 409 410
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
		compile(project(":spring-context"))
411 412 413 414
		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")
415 416 417 418
		optional("net.sf.ehcache:ehcache-core:2.6.3")
		optional("org.quartz-scheduler:quartz:1.8.3") {
			exclude group: "org.slf4j", module: "slf4j-log4j12"
		}
419
		optional("org.codehaus.fabric3.api:commonj:1.1.0")
420
		optional("org.apache.velocity:velocity:1.7")
421 422
		optional("org.freemarker:freemarker:2.3.15")
		optional("com.lowagie:itext:2.1.7")
423
		optional("net.sf.jasperreports:jasperreports:5.0.4")
424 425
		optional("org.slf4j:slf4j-api:${slf4jVersion}")
		provided("javax.activation:activation:1.1")
426
		testCompile("org.apache.poi:poi:3.9")
427 428
		testCompile("commons-beanutils:commons-beanutils:1.8.0") // for Velocity/JasperReports
		testCompile("commons-digester:commons-digester:1.8.1") // for Velocity/JasperReports
429
		testCompile("hsqldb:hsqldb:${hsqldbVersion}")
430 431 432
	}

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

P
Phillip Webb 已提交
436 437
project("spring-web") {
	description = "Spring Web"
438
	dependencies {
439 440 441 442
		compile(project(":spring-core"))
		compile(project(":spring-beans")) // for MultiPartFilter
		compile(project(":spring-aop")) // for JaxWsPortProxyFactoryBean
		compile(project(":spring-context"))
443
		optional(project(":spring-oxm")) // for MarshallingHttpMessageConverter
444
		compile("aopalliance:aopalliance:1.0")
445
		provided("javax.el:javax.el-api:2.2.4")
446
		provided("com.sun.faces:jsf-api:2.1.7")
447 448 449 450
		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")
451 452
		optional("com.caucho:hessian:3.2.1")
		optional("rome:rome:1.0")
453
		optional("commons-fileupload:commons-fileupload:1.3")
454 455 456 457 458
		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 已提交
459
			exclude group: "org.eclipse.jetty.orbit", module: "javax.servlet"
460
		}
461
		optional("org.eclipse.jetty:jetty-server:8.1.5.v20120716") {
P
Phillip Webb 已提交
462
			exclude group: "org.eclipse.jetty.orbit", module: "javax.servlet"
463
		}
464
		optional("log4j:log4j:1.2.17")
465
		testCompile(project(":spring-context-support"))  // for JafMediaTypeFactory
P
Phillip Webb 已提交
466
		testCompile("xmlunit:xmlunit:1.3")
467 468 469
	}

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

P
Phillip Webb 已提交
473 474
project("spring-orm") {
	description = "Spring Object/Relational Mapping"
475

476 477
	dependencies {
		compile("aopalliance:aopalliance:1.0")
478 479 480 481 482 483
		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")
484
		optional("javax.jdo:jdo-api:3.0")
485
		provided("javax.servlet:javax.servlet-api:3.0.1")
486 487
		testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}")
		testCompile("commons-dbcp:commons-dbcp:1.2.2")
488
		testCompile("hsqldb:hsqldb:${hsqldbVersion}")
489 490
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
491 492
		optional(project(":spring-aop"))
		optional(project(":spring-context"))
493 494
		compile(project(":spring-tx"))
		compile(project(":spring-jdbc"))
495
		optional(project(":spring-web"))
496
	}
C
Chris Beams 已提交
497 498
}

P
Phillip Webb 已提交
499 500
project("spring-orm-hibernate4") {
	description = "Spring Object/Relational Mapping - Hibernate 4 support"
501
	merge.into = project(":spring-orm")
502
	dependencies {
503 504
		provided(project(":spring-tx"))
		provided(project(":spring-jdbc"))
J
Juergen Hoeller 已提交
505 506
		optional("org.hibernate:hibernate-core:4.2.0.Final")
		optional("org.hibernate:hibernate-entitymanager:4.2.0.Final")
507
		optional(project(":spring-web"))
508
		optional("javax.servlet:javax.servlet-api:3.0.1")
509
	}
510 511
}

R
Rossen Stoyanchev 已提交
512 513 514 515 516 517
project("spring-websocket") {
	description = "Spring WebSocket support"
	dependencies {
		compile(project(":spring-core"))
		compile(project(":spring-context"))
		compile(project(":spring-web"))
518
		optional(project(":spring-webmvc"))
519 520 521 522 523 524 525 526 527 528

		optional("org.apache.tomcat:tomcat-servlet-api:8.0-SNAPSHOT") // TODO: replace with "javax.servlet:javax.servlet-api"
		optional("org.apache.tomcat:tomcat-websocket-api:8.0-SNAPSHOT") // TODO: replace with "javax.websocket:javax.websocket-api"

		optional("org.apache.tomcat:tomcat-websocket:8.0-SNAPSHOT") {
			exclude group: "org.apache.tomcat", module: "tomcat-websocket-api"
			exclude group: "org.apache.tomcat", module: "tomcat-servlet-api"
		}

		optional("org.glassfish.tyrus:tyrus-websocket-core:1.0-SNAPSHOT")
529
		optional("org.glassfish.tyrus:tyrus-container-servlet:1.0-SNAPSHOT")
530

P
Phillip Webb 已提交
531 532 533 534 535
		optional("org.eclipse.jetty:jetty-webapp:9.0.1.v20130408") {
			exclude group: "org.eclipse.jetty.orbit", module: "javax.servlet"
		}
		optional("org.eclipse.jetty.websocket:websocket-server:9.0.1.v20130408")

536
		optional("com.fasterxml.jackson.core:jackson-databind:2.0.1") // required for SockJS support currently
537

R
Rossen Stoyanchev 已提交
538 539 540 541 542
	}

	repositories {
		maven { url "http://repo.springsource.org/libs-release" }
		maven { url "https://maven.java.net/content/groups/public/" } // javax.websocket-*
543 544
		maven { url "https://repository.apache.org/content/repositories/snapshots" } // tomcat-websocket snapshots
		maven { url "https://maven.java.net/content/repositories/snapshots" } // tyrus/glassfish snapshots
R
Rossen Stoyanchev 已提交
545 546 547
	}
}

P
Phillip Webb 已提交
548 549
project("spring-webmvc") {
	description = "Spring Web MVC"
550
	dependencies {
551 552 553 554 555
		compile(project(":spring-core"))
		compile(project(":spring-expression"))
		compile(project(":spring-beans"))
		compile(project(":spring-web"))
		compile(project(":spring-context"))
556 557 558 559 560 561 562
		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")
563
		optional("org.apache.poi:poi:3.9")
564
		optional("com.lowagie:itext:2.1.7")
565
		optional("net.sf.jasperreports:jasperreports:5.0.4") {
566
			exclude group: "xml-apis", module: "xml-apis"
567
		}
568
		optional("rome:rome:1.0")
569 570
		optional("org.apache.velocity:velocity:1.7")
		optional("velocity-tools:velocity-tools-view:1.4")
571 572 573 574 575 576
		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")
577 578 579
		testCompile(project(":spring-aop"))
		testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}")
		testCompile("rhino:js:1.7R1")
P
Phillip Webb 已提交
580
		testCompile("xmlunit:xmlunit:1.3")
581
		testCompile("dom4j:dom4j:1.6.1") {
P
Phillip Webb 已提交
582
			exclude group: "xml-apis", module: "xml-apis"
583 584
		}
		testCompile("jaxen:jaxen:1.1.1") {
P
Phillip Webb 已提交
585 586 587
			exclude group: "xml-apis", module: "xml-apis"
			exclude group: "xom", module: "xom"
			exclude group: "xerces", module: "xercesImpl"
588
		}
589 590 591 592 593 594 595 596 597 598 599
		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")
600 601 602
	}

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

P
Phillip Webb 已提交
606 607
project("spring-webmvc-tiles3") {
	description = "Spring Framework Tiles3 Integration"
608
	merge.into = project(":spring-webmvc")
609
	dependencies {
610 611
		provided(project(":spring-context"))
		provided(project(":spring-web"))
612
		provided("javax.el:javax.el-api:2.2.4")
613 614 615 616 617
		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 已提交
618
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
619
		}
620
		optional("org.apache.tiles:tiles-servlet:3.0.1") {
P
Phillip Webb 已提交
621
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
622
		}
623
		optional("org.apache.tiles:tiles-jsp:3.0.1") {
P
Phillip Webb 已提交
624
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
625 626 627
		}
		optional("org.apache.tiles:tiles-extras:3.0.1") {
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
628
		}
629
		optional("org.apache.tiles:tiles-el:3.0.1") {
P
Phillip Webb 已提交
630
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
631
		}
632 633
		provided("javax.servlet:javax.servlet-api:3.0.1")
		testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}")
634
	}
635 636
}

P
Phillip Webb 已提交
637 638
project("spring-webmvc-portlet") {
	description = "Spring Web Portlet"
639
	dependencies {
640
		provided("javax.servlet:javax.servlet-api:3.0.1")
641
		provided("javax.portlet:portlet-api:2.0")
642 643 644 645 646
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
		compile(project(":spring-context"))
		compile(project(":spring-web"))
		compile(project(":spring-webmvc"))
647
		optional("commons-fileupload:commons-fileupload:1.2")
648 649 650
	}

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

P
Phillip Webb 已提交
654 655
project("spring-test") {
	description = "Spring TestContext Framework"
656 657 658 659 660 661 662 663 664

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

665
	test {
666
		dependsOn testNG
667
		useJUnit()
668
		// "TestCase" classes are run by other test classes, not the build.
S
Sam Brannen 已提交
669
		exclude(["**/*TestCase.class", "**/*TestSuite.class"])
670
	}
671

672
	dependencies {
673
		compile(project(":spring-core"))
674 675 676 677 678 679 680 681
		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"), )
682 683
		optional("junit:junit:${junitVersion}")
		optional("org.testng:testng:6.5.2")
684
		optional("javax.servlet:javax.servlet-api:3.0.1")
685 686
		optional("javax.servlet.jsp:jsp-api:2.1")
		optional("javax.portlet:portlet-api:2.0")
687
		optional("org.eclipse.persistence:javax.persistence:2.0.0")
688
		optional("org.aspectj:aspectjweaver:${aspectjVersion}")
689
		testCompile("org.hibernate:hibernate-core:3.6.9.Final")
690 691 692 693 694
		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}")
695
	}
C
Chris Beams 已提交
696 697
}

P
Phillip Webb 已提交
698 699
project("spring-test-mvc") {
	description = "Spring Test MVC Framework"
700
	merge.into = project(":spring-test")
701
	dependencies {
702
		optional(project(":spring-context"))
703
		provided(project(":spring-webmvc"))
704 705 706
		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 已提交
707
		optional("xmlunit:xmlunit:1.3")
708
		testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}")
709 710 711
		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")
712 713
		testCompile("com.fasterxml.jackson.core:jackson-databind:2.0.1")
		testCompile(project(":spring-context-support"))
714 715 716 717
		testCompile(project(":spring-oxm"))
		testCompile("com.thoughtworks.xstream:xstream:1.3.1")
		testCompile("cglib:cglib-nodep:2.2")
		testCompile("rome:rome:1.0")
718 719
		testCompile("javax.activation:activation:1.1")
		testCompile("javax.mail:mail:1.4")
720 721
		testCompile("org.apache.tiles:tiles-request-api:1.0.1")
		testCompile("org.apache.tiles:tiles-api:3.0.1")
722
		testCompile("org.apache.tiles:tiles-core:3.0.1") {
P
Phillip Webb 已提交
723
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
724 725
		}
		testCompile("org.apache.tiles:tiles-servlet:3.0.1") {
P
Phillip Webb 已提交
726
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
727 728
		}
	}
R
Rob Winch 已提交
729 730
}

P
Phillip Webb 已提交
731 732 733
project("spring-aspects") {
	description = "Spring Aspects"
	apply from: "aspects.gradle"
734
	dependencies {
735 736 737 738 739 740
		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
741
		aspects(project(":spring-orm"))
742
		provided("org.eclipse.persistence:javax.persistence:2.0.0")
743
		testCompile("javax.mail:mail:1.4")
744
		ajc("org.aspectj:aspectjtools:${aspectjVersion}")
C
Chris Beams 已提交
745
		rt("org.aspectj:aspectjrt:${aspectjVersion}")
746 747 748 749
		compile("org.aspectj:aspectjweaver:${aspectjVersion}")
		testCompile(project(":spring-core")) // for CodeStyleAspect
		compile(project(":spring-beans")) // for "p" namespace visibility
		testCompile(project(":spring-test"))
750 751
	}
	eclipse.project {
P
Phillip Webb 已提交
752
		natures += "org.eclipse.ajdt.ui.ajnature"
753
		buildCommands = [new org.gradle.plugins.ide.eclipse.model.
P
Phillip Webb 已提交
754
				BuildCommand("org.eclipse.ajdt.core.ajbuilder")]
755
	}
C
Chris Beams 已提交
756 757
}

758
configure(rootProject) {
P
Phillip Webb 已提交
759
	description = "Spring Framework"
760

P
Phillip Webb 已提交
761
	apply plugin: "docbook-reference"
762
	apply plugin: "groovy"
763
	apply plugin: "detect-split-packages"
764 765 766
	apply from: "${gradleScriptDir}/jdiff.gradle"

	reference {
P
Phillip Webb 已提交
767 768
		sourceDir = file("src/reference/docbook")
		pdfFilename = "spring-framework-reference.pdf"
769 770
	}

771 772
	detectSplitPackages {
		projectsToScan -= project(":spring-instrument-tomcat")
773
	}
774

C
Chris Beams 已提交
775
	// don't publish the default jar for the root project
776 777 778
	configurations.archives.artifacts.clear()

	dependencies { // for integration tests
779 780 781 782 783 784 785 786 787 788
		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"))
789
		testCompile(project(":spring-orm"))
J
Juergen Hoeller 已提交
790
		testCompile("org.hibernate:hibernate-core:4.2.0.Final")
791
		testCompile("javax.servlet:javax.servlet-api:3.0.1")
792 793 794 795 796
		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}")
797 798 799
	}

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

804 805 806 807 808
		dependsOn {
			subprojects.collect {
				it.tasks.getByName("jar")
			}
		}
809 810 811
		options.memberLevel = org.gradle.external.javadoc.JavadocMemberLevel.PROTECTED
		options.author = true
		options.header = rootProject.description
P
Phillip Webb 已提交
812
		options.overview = "src/api/overview.html"
813
		options.stylesheetFile = file("src/api/stylesheet.css")
814
		options.splitIndex = true
C
Chris Beams 已提交
815 816
		options.links(project.ext.javadocLinks)

817 818 819
		source subprojects.collect { project ->
			project.sourceSets.main.allJava
		}
C
Chris Beams 已提交
820

P
Phillip Webb 已提交
821
		maxMemory = "1024m"
C
Chris Beams 已提交
822
		destinationDir = new File(buildDir, "api")
823 824 825 826 827 828 829 830 831 832 833 834

		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 })
		}
835 836 837
	}

	task docsZip(type: Zip) {
P
Phillip Webb 已提交
838 839 840
		group = "Distribution"
		baseName = "spring-framework"
		classifier = "docs"
841 842 843
		description = "Builds -${classifier} archive containing api and reference " +
			"for deployment at http://static.springframework.org/spring-framework/docs."

P
Phillip Webb 已提交
844 845
		from("src/dist") {
			include "changelog.txt"
846 847 848
		}

		from (api) {
849
			into "javadoc-api"
850 851 852
		}

		from (reference) {
853
			into "spring-framework-reference"
854 855 856 857
		}
	}

	task schemaZip(type: Zip) {
P
Phillip Webb 已提交
858 859 860
		group = "Distribution"
		baseName = "spring-framework"
		classifier = "schema"
861 862 863 864 865 866 867
		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 已提交
868
				it.path.endsWith("META-INF/spring.schemas")
869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885
			}?.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 已提交
886 887 888
		group = "Distribution"
		baseName = "spring-framework"
		classifier = "dist"
889 890 891 892 893
		description = "Builds -${classifier} archive, containing all jars and docs, " +
					"suitable for community download page."

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

P
Phillip Webb 已提交
894 895 896 897
		from("src/dist") {
			include "readme.txt"
			include "license.txt"
			include "notice.txt"
898
			into "${baseDir}"
P
Phillip Webb 已提交
899
			expand(copyright: new Date().format("yyyy"), version: project.version)
900 901 902 903 904 905 906 907 908 909 910 911 912
		}

		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 已提交
913
				if (subproject.tasks.findByPath("sourcesJar")) {
914 915
					from subproject.sourcesJar
				}
P
Phillip Webb 已提交
916
				if (subproject.tasks.findByPath("javadocJar")) {
917 918 919 920 921 922 923 924 925
					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 已提交
926 927 928
		group = "Distribution"
		baseName = "spring-framework"
		classifier = "dist-with-deps"
929 930 931 932 933 934 935 936 937 938
		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 ->
939 940
					(subproject.configurations.runtime.resolvedConfiguration.resolvedArtifacts +
					subproject.configurations.optional.resolvedConfiguration.resolvedArtifacts).each { artifact ->
941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961
						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 已提交
962 963
		description = "Generates gradlew[.bat] scripts"
		gradleVersion = "1.3"
964 965 966 967

		doLast() {
			def gradleOpts = "-XX:MaxPermSize=1024m -Xmx1024m"
			def gradleBatOpts = "$gradleOpts -XX:MaxHeapSize=256m"
P
Phillip Webb 已提交
968
			File wrapperFile = file("gradlew")
969 970
			wrapperFile.text = wrapperFile.text.replace("DEFAULT_JVM_OPTS=",
				"GRADLE_OPTS=\"$gradleOpts \$GRADLE_OPTS\"\nDEFAULT_JVM_OPTS=")
P
Phillip Webb 已提交
971
			File wrapperBatFile = file("gradlew.bat")
972 973 974 975
			wrapperBatFile.text = wrapperBatFile.text.replace("set DEFAULT_JVM_OPTS=",
				"set GRADLE_OPTS=$gradleBatOpts %GRADLE_OPTS%\nset DEFAULT_JVM_OPTS=")
		}
	}
976

977
}
978 979 980 981 982 983 984 985 986 987 988 989

/*
 * 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-")) {
990
			return version.replace('BUILD', qualifier)
991 992
		}
	}
993
	return version
994
}