build.gradle 32.7 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.4")
8
	}
9 10
}

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

C
Chris Beams 已提交
15
	ext.aspectjVersion  = "1.7.1"
P
Phillip Webb 已提交
16 17 18 19
	ext.easymockVersion = "2.5.2"
	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
	compileJava {
		sourceCompatibility=1.5
		targetCompatibility=1.5
	}
	compileTestJava {
		sourceCompatibility=1.7
		targetCompatibility=1.7
	}
C
Chris Beams 已提交
35

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

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

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

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

68
	dependencies {
69
		testCompile("junit:junit:${junitVersion}")
70
		testCompile("org.hamcrest:hamcrest-all:1.3")
71
		testCompile("org.mockito:mockito-core:1.9.5")
72
		if (project.name in ["spring", "spring-jms",
C
Chris Beams 已提交
73 74 75 76 77 78
				"spring-orm-hibernate4", "spring-oxm", "spring-struts",
				"spring-test", "spring-test-mvc", "spring-tx", "spring-web",
				"spring-webmvc", "spring-webmvc-portlet", "spring-webmvc-tiles3"]) {
			testCompile("org.easymock:easymock:${easymockVersion}")
			testCompile "org.easymock:easymockclassextension:${easymockVersion}"
		}
79
	}
C
Chris Beams 已提交
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101

	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/",
		"http://commons.apache.org/lang/api-2.5",
		"http://commons.apache.org/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",
		"http://www.eclipse.org/aspectj/doc/released/aspectj5rt-api/",
		"http://hc.apache.org/httpclient-3.x/apidocs",
		"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://ibatis.apache.org/docs/java/dev",
		"http://tiles.apache.org/framework/apidocs",
		"http://commons.apache.org/dbcp/api-1.2.2",
	] as String[]
102 103
}

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

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

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

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

125 126 127
		options.memberLevel = org.gradle.external.javadoc.JavadocMemberLevel.PROTECTED
		options.author = true
		options.header = project.name
C
Chris Beams 已提交
128 129 130 131 132 133
		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
134 135 136
	}

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

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

	artifacts {
		archives sourcesJar
		archives javadocJar
	}
C
Chris Beams 已提交
151 152
}

153 154 155 156 157 158 159 160 161 162 163 164
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 已提交
165 166
project("spring-core") {
	description = "Spring Core"
167 168 169 170 171 172 173

	// 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 已提交
174 175
	def asmVersion = "4.0"
	def cglibVersion = "3.0"
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194

	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 已提交
195
					rule(pattern: "org.objectweb.asm.**", result: "org.springframework.asm.@1")
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
				}
			}
		}
	}

	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 已提交
214 215
					rule(pattern: "net.sf.cglib.**", result: "org.springframework.cglib.@1")
					// as mentioned above, transform cglib"s internal asm dependencies from
216 217
					// 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 已提交
218
					rule(pattern: "org.objectweb.asm.**", result: "org.springframework.asm.@1")
219 220 221 222 223 224
				}
			}
		}
	}

	dependencies {
225 226 227 228
		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")
229

230 231
		compile(files(asmRepackJar))
		compile("commons-logging:commons-logging:1.1.1")
232
		optional("org.aspectj:aspectjweaver:${aspectjVersion}")
233
		optional("net.sf.jopt-simple:jopt-simple:3.0")
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 242 243 244
	}

	jar {
		// inline all repackaged asm and cglib classes directly into the spring-core jar
		dependsOn asmRepackJar
		from(zipTree(asmRepackJar.archivePath)) {
P
Phillip Webb 已提交
245
			include "org/springframework/asm/**"
246 247 248
		}
		dependsOn cglibRepackJar
		from(zipTree(cglibRepackJar.archivePath)) {
P
Phillip Webb 已提交
249
			include "org/springframework/cglib/**"
250 251
		}
	}
C
Chris Beams 已提交
252 253
}

P
Phillip Webb 已提交
254 255
project("spring-beans") {
	description = "Spring Beans"
256
	dependencies {
257 258
		compile(project(":spring-core"))
		compile(files(project(":spring-core").cglibRepackJar))
259 260 261
		provided("javax.el:el-api:1.0")
		provided("javax.inject:javax.inject:1")
		testCompile("log4j:log4j:1.2.17")
262
	}
C
Chris Beams 已提交
263 264
}

P
Phillip Webb 已提交
265 266
project("spring-aop") {
	description = "Spring AOP"
267
	dependencies {
268 269 270
		compile(project(":spring-core"))
		compile(files(project(":spring-core").cglibRepackJar))
		compile(project(":spring-beans"))
271
		compile("aopalliance:aopalliance:1.0")
272 273 274
		optional("com.jamonapi:jamon:2.4")
		optional("commons-pool:commons-pool:1.5.3")
		optional("org.aspectj:aspectjweaver:${aspectjVersion}")
275
	}
C
Chris Beams 已提交
276 277
}

P
Phillip Webb 已提交
278 279
project("spring-expression") {
	description = "Spring Expression Language (SpEL)"
280
	dependencies {
281
		compile(project(":spring-core"))
282
	}
C
Chris Beams 已提交
283 284
}

P
Phillip Webb 已提交
285 286
project("spring-instrument") {
	description = "Spring Instrument"
287
	dependencies {
288
		compile(project(":spring-core"))
289 290
	}
	jar {
P
Phillip Webb 已提交
291 292
		manifest.attributes["Premain-Class"] =
			"org.springframework.instrument.InstrumentationSavingAgent"
293
	}
C
Chris Beams 已提交
294 295
}

P
Phillip Webb 已提交
296 297
project("spring-instrument-tomcat") {
	description = "Spring Instrument Tomcat"
298
	dependencies {
299
		provided("org.apache.tomcat:catalina:6.0.16")
300
	}
C
Chris Beams 已提交
301 302
}

P
Phillip Webb 已提交
303 304
project("spring-context") {
	description = "Spring Context"
305
	dependencies {
306
		optional(project(":spring-instrument"))
307 308 309 310 311
		compile(project(":spring-aop"))
		compile(project(":spring-beans"))
		compile(project(":spring-expression"))
		compile(project(":spring-core"))
		compile(files(project(":spring-core").cglibRepackJar))
312 313 314 315 316 317 318 319 320 321 322
		optional("backport-util-concurrent:backport-util-concurrent:3.0")
		optional("javax.ejb:ejb-api:3.0")
		optional("javax.inject:javax.inject:1")
		optional("org.apache.geronimo.specs:geronimo-jms_1.1_spec:1.1")
		optional("javax.persistence:persistence-api:1.0")
		optional("javax.validation:validation-api:1.0.0.GA")
		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}")
323
		optional("org.hibernate:hibernate-validator:4.3.0.Final")
324 325
		optional("org.aspectj:aspectjweaver:${aspectjVersion}")
		optional("org.apache.geronimo.specs:geronimo-jta_1.1_spec:1.1")
326
		testCompile("commons-dbcp:commons-dbcp:1.2.2")
327
		testCompile("javax.inject:javax.inject-tck:1")
328 329 330
	}

	test {
P
Phillip Webb 已提交
331
		jvmArgs = ["-disableassertions:org.aspectj.weaver.UnresolvedType"] // SPR-7989
332
	}
C
Chris Beams 已提交
333 334
}

P
Phillip Webb 已提交
335 336
project("spring-tx") {
	description = "Spring Transaction"
337
	dependencies {
338 339
		optional(project(":spring-context")) // for JCA, @EnableTransactionManagement
		optional(project(":spring-aop"))
340 341
		compile(project(":spring-beans"))
		compile(project(":spring-core"))
342
		compile("aopalliance:aopalliance:1.0")
343 344 345 346 347 348
		provided("com.ibm.websphere:uow:6.0.2.17")
		optional("javax.resource:connector-api:1.5")
		optional("org.apache.geronimo.specs:geronimo-jta_1.1_spec:1.1")
		optional("javax.ejb:ejb-api:3.0")
		testCompile("javax.persistence:persistence-api:1.0")
		testCompile("org.aspectj:aspectjweaver:${aspectjVersion}")
349
	}
C
Chris Beams 已提交
350 351
}

P
Phillip Webb 已提交
352 353 354
project("spring-oxm") {
	description = "Spring Object/XML Marshalling"
	apply from: "oxm.gradle"
355 356 357 358 359 360 361 362

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

363
	dependencies {
364 365
		compile(project(":spring-beans"))
		compile(project(":spring-core"))
366
		optional(project(":spring-context")) // for Jaxb2Marshaller
367
		compile("commons-lang:commons-lang:2.5")
368 369 370 371 372
		optional("com.thoughtworks.xstream:xstream:1.3.1")
		optional("com.sun.xml.bind:jaxb-impl:2.1.7")
		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")
373
		testCompile("org.codehaus.jettison:jettison:1.0.1")
P
Phillip Webb 已提交
374
		testCompile("xmlunit:xmlunit:1.3")
375
		testCompile("xmlpull:xmlpull:1.1.3.4a")
376 377 378 379
		testCompile(files(genCastor.classesDir).builtBy(genCastor))
		testCompile(files(genJaxb.classesDir).builtBy(genJaxb))
		testCompile(files(genXmlbeans.classesDir).builtBy(genXmlbeans))
	}
C
Chris Beams 已提交
380 381
}

P
Phillip Webb 已提交
382 383
project("spring-jms") {
	description = "Spring JMS"
384
	dependencies {
385 386 387 388 389
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
		compile(project(":spring-aop"))
		compile(project(":spring-context"))
		compile(project(":spring-tx"))
390
		optional(project(":spring-oxm"))
391
		compile("aopalliance:aopalliance:1.0")
392 393 394
		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")
395 396
		optional("org.codehaus.jackson:jackson-mapper-asl:1.4.2")
		optional("com.fasterxml.jackson.core:jackson-databind:2.0.1")
397
	}
C
Chris Beams 已提交
398 399
}

P
Phillip Webb 已提交
400 401
project("spring-jdbc") {
	description = "Spring JDBC"
402
	dependencies {
403 404
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
405
		optional(project(":spring-context")) // for JndiDataSourceLookup
406
		compile(project(":spring-tx"))
407 408 409 410 411 412
		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")
413
	}
C
Chris Beams 已提交
414 415
}

P
Phillip Webb 已提交
416 417
project("spring-context-support") {
	description = "Spring Context Support"
418
	dependencies {
419 420 421
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
		compile(project(":spring-context"))
422 423 424 425 426 427 428 429 430 431
		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")
		optional("net.sf.ehcache:ehcache-core:2.0.0")
		optional("opensymphony:quartz:1.6.2")
		optional("org.codehaus.fabric3.api:commonj:1.1.0")
		optional("velocity:velocity:1.5")
		optional("org.freemarker:freemarker:2.3.15")
		optional("com.lowagie:itext:2.1.7")
432
		optional("jasperreports:jasperreports:2.0.5")
433 434
		optional("org.slf4j:slf4j-api:${slf4jVersion}")
		provided("javax.activation:activation:1.1")
435
		testCompile("org.apache.poi:poi:3.0.2-FINAL")
436 437
		testCompile("commons-beanutils:commons-beanutils:1.8.0") // for Velocity/JasperReports
		testCompile("commons-digester:commons-digester:1.8.1") // for Velocity/JasperReports
438
		testCompile("hsqldb:hsqldb:${hsqldbVersion}")
439 440 441
	}

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

P
Phillip Webb 已提交
445 446
project("spring-web") {
	description = "Spring Web"
447
	dependencies {
448 449 450 451
		compile(project(":spring-core"))
		compile(project(":spring-beans")) // for MultiPartFilter
		compile(project(":spring-aop")) // for JaxWsPortProxyFactoryBean
		compile(project(":spring-context"))
452
		optional(project(":spring-oxm")) // for MarshallingHttpMessageConverter
453
		compile("aopalliance:aopalliance:1.0")
454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471
		optional("com.caucho:hessian:3.2.1")
		optional("rome:rome:1.0")
		optional("javax.el:el-api:1.0")
		optional("javax.faces:jsf-api:1.2_08")
		provided("javax.portlet:portlet-api:2.0")
		provided("javax.servlet:javax.servlet-api:3.0.1")
		provided("javax.servlet.jsp:jsp-api:2.1")
		optional("javax.xml:jaxrpc-api:1.1")
		provided("javax.xml.soap:saaj-api:1.3")
		provided("javax.activation:activation:1.1")
		optional("commons-fileupload:commons-fileupload:1.2")
		optional("commons-io:commons-io:1.3")
		optional("commons-httpclient:commons-httpclient:3.1")
		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 已提交
472
			exclude group: "org.eclipse.jetty.orbit", module: "javax.servlet"
473
		}
474
		optional("org.eclipse.jetty:jetty-server:8.1.5.v20120716") {
P
Phillip Webb 已提交
475
			exclude group: "org.eclipse.jetty.orbit", module: "javax.servlet"
476
		}
477
		optional("log4j:log4j:1.2.17")
478
		testCompile(project(":spring-context-support"))  // for JafMediaTypeFactory
P
Phillip Webb 已提交
479
		testCompile("xmlunit:xmlunit:1.3")
480 481 482
	}

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

P
Phillip Webb 已提交
486 487
project("spring-orm") {
	description = "Spring Object/Relational Mapping"
488 489 490 491 492 493 494 495

	compileTestJava {
		// necessary to avoid java.lang.VerifyError on toplink compilation
		// TODO: remove this block when we remove toplink
		sourceCompatibility=1.6
		targetCompatibility=1.6
	}

496 497
	dependencies {
		compile("aopalliance:aopalliance:1.0")
498 499 500 501 502 503 504 505 506 507 508 509
		optional("org.hibernate:hibernate-core:3.3.2.GA")
		optional("org.hibernate:hibernate-annotations:3.4.0.GA")
		optional("org.hibernate:hibernate-entitymanager:3.4.0.GA")
		optional("org.apache.openjpa:openjpa:1.1.0")
		optional("org.eclipse.persistence:org.eclipse.persistence.core:1.0.1")
		optional("org.eclipse.persistence:org.eclipse.persistence.jpa:1.0.1")
		optional("toplink.essentials:toplink-essentials:2.0-41b")
		optional("javax.jdo:jdo-api:3.0")
		optional("org.apache.ibatis:ibatis-sqlmap:2.3.4.726")
		optional("javax.persistence:persistence-api:1.0")
		provided("javax.servlet:servlet-api:2.5")
		testCompile("javax.servlet:javax.servlet-api:3.0.1")
510 511 512 513
		testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}")
		testCompile("commons-dbcp:commons-dbcp:1.2.2")
		testCompile("org.eclipse.persistence:org.eclipse.persistence.asm:1.0.1")
		testCompile("org.eclipse.persistence:org.eclipse.persistence.antlr:1.0.1")
514
		testCompile("hsqldb:hsqldb:${hsqldbVersion}")
515 516
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
517 518
		optional(project(":spring-aop"))
		optional(project(":spring-context"))
519 520
		compile(project(":spring-tx"))
		compile(project(":spring-jdbc"))
521
		optional(project(":spring-web"))
522
	}
C
Chris Beams 已提交
523 524
}

P
Phillip Webb 已提交
525 526
project("spring-orm-hibernate4") {
	description = "Spring Object/Relational Mapping - Hibernate 4 support"
527
	merge.into = project(":spring-orm")
528
	dependencies {
529 530
		provided(project(":spring-tx"))
		provided(project(":spring-jdbc"))
531 532
		optional("org.hibernate:hibernate-core:4.1.0.Final")
		optional("org.hibernate:hibernate-entitymanager:4.1.0.Final")
533
		optional(project(":spring-web"))
534
		optional("javax.servlet:servlet-api:2.5")
535
	}
536 537
}

P
Phillip Webb 已提交
538 539
project("spring-webmvc") {
	description = "Spring Web MVC"
540
	dependencies {
541 542 543 544 545
		compile(project(":spring-core"))
		compile(project(":spring-expression"))
		compile(project(":spring-beans"))
		compile(project(":spring-web"))
		compile(project(":spring-context"))
546 547 548 549 550 551 552 553 554 555 556 557
		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("velocity-tools:velocity-tools-view:1.4")
		optional("net.sourceforge.jexcelapi:jxl:2.6.3")
		optional("org.apache.poi:poi:3.0.2-FINAL")
		optional("com.lowagie:itext:2.1.7")
		optional("jasperreports:jasperreports:2.0.5") {
			exclude group: "xml-apis", module: "xml-apis"
558
		}
559 560 561 562 563 564 565 566
		optional("rome:rome:1.0")
		optional("velocity:velocity:1.5")
		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")
567 568 569
		testCompile(project(":spring-aop"))
		testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}")
		testCompile("rhino:js:1.7R1")
P
Phillip Webb 已提交
570
		testCompile("xmlunit:xmlunit:1.3")
571
		testCompile("dom4j:dom4j:1.6.1") {
P
Phillip Webb 已提交
572
			exclude group: "xml-apis", module: "xml-apis"
573 574
		}
		testCompile("jaxen:jaxen:1.1.1") {
P
Phillip Webb 已提交
575 576 577
			exclude group: "xml-apis", module: "xml-apis"
			exclude group: "xom", module: "xom"
			exclude group: "xerces", module: "xercesImpl"
578
		}
579 580 581 582 583 584 585 586 587 588 589
		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")
590 591 592
	}

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

P
Phillip Webb 已提交
596 597
project("spring-webmvc-tiles3") {
	description = "Spring Framework Tiles3 Integration"
598
	merge.into = project(":spring-webmvc")
599
	dependencies {
600 601
		provided(project(":spring-context"))
		provided(project(":spring-web"))
602 603 604 605 606 607
		provided("javax.el:el-api:1.0")
		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 已提交
608
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
609
		}
610
		optional("org.apache.tiles:tiles-servlet:3.0.1") {
P
Phillip Webb 已提交
611
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
612
		}
613
		optional("org.apache.tiles:tiles-jsp:3.0.1") {
P
Phillip Webb 已提交
614
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
615 616 617
		}
		optional("org.apache.tiles:tiles-extras:3.0.1") {
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
618
		}
619
		optional("org.apache.tiles:tiles-el:3.0.1") {
P
Phillip Webb 已提交
620
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
621
		}
622 623
		provided("javax.servlet:javax.servlet-api:3.0.1")
		testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}")
624
	}
625 626
}

P
Phillip Webb 已提交
627 628
project("spring-webmvc-portlet") {
	description = "Spring Web Portlet"
629
	dependencies {
630 631
		provided("javax.servlet:servlet-api:2.5")
		provided("javax.portlet:portlet-api:2.0")
632 633 634 635 636
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
		compile(project(":spring-context"))
		compile(project(":spring-web"))
		compile(project(":spring-webmvc"))
637
		optional("commons-fileupload:commons-fileupload:1.2")
638 639 640
	}

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

P
Phillip Webb 已提交
644 645
project("spring-test") {
	description = "Spring TestContext Framework"
646 647 648 649 650 651 652 653 654

	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
	}

655
	test {
656
		dependsOn testNG
657
		useJUnit()
658
		// "TestCase" classes are run by other test classes, not the build.
S
Sam Brannen 已提交
659
		exclude(["**/*TestCase.class", "**/*TestSuite.class"])
660
	}
661

662
	dependencies {
663
		compile(project(":spring-core"))
664 665 666 667 668 669 670 671
		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"), )
672 673
		optional("junit:junit:${junitVersion}")
		optional("org.testng:testng:6.5.2")
674 675 676 677 678 679 680 681 682 683 684
		optional("javax.servlet:servlet-api:2.5")
		optional("javax.servlet.jsp:jsp-api:2.1")
		optional("javax.portlet:portlet-api:2.0")
		optional("javax.persistence:persistence-api:1.0")
		optional("org.aspectj:aspectjweaver:${aspectjVersion}")
		testCompile("org.hibernate:hibernate-core:3.3.2.GA")
		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}")
685
	}
C
Chris Beams 已提交
686 687
}

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

P
Phillip Webb 已提交
722 723
project("spring-struts") {
	description = "Spring Struts"
724
	dependencies {
725 726 727 728 729 730 731
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
		compile(project(":spring-context"))
		compile(project(":spring-web"))
		compile(project(":spring-webmvc"))
		compile("struts:struts:1.2.9")
		compile("commons-beanutils:commons-beanutils:1.7.0")
732 733
		provided("javax.servlet:servlet-api:2.5")
		provided("javax.servlet:jstl:1.2")
734
		testCompile(project(":spring-test"))
735
	}
C
Chris Beams 已提交
736 737
}

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

765
configure(rootProject) {
P
Phillip Webb 已提交
766
	description = "Spring Framework"
767

P
Phillip Webb 已提交
768
	apply plugin: "docbook-reference"
769
	apply plugin: "groovy"
770
	apply plugin: "detect-split-packages"
771 772 773
	apply from: "${gradleScriptDir}/jdiff.gradle"

	reference {
P
Phillip Webb 已提交
774 775
		sourceDir = file("src/reference/docbook")
		pdfFilename = "spring-framework-reference.pdf"
776 777
	}

778 779
	detectSplitPackages {
		projectsToScan -= project(":spring-instrument-tomcat")
780
	}
781

C
Chris Beams 已提交
782
	// don't publish the default jar for the root project
783 784 785
	configurations.archives.artifacts.clear()

	dependencies { // for integration tests
786 787 788 789 790 791 792 793 794 795
		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"))
796
		testCompile(project(":spring-orm"))
797 798
		testCompile("org.hibernate:hibernate-core:4.1.0.Final")
		testCompile("javax.servlet:servlet-api:2.5")
799 800 801 802 803
		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}")
804 805 806
	}

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

811 812 813 814 815
		dependsOn {
			subprojects.collect {
				it.tasks.getByName("jar")
			}
		}
816 817 818
		options.memberLevel = org.gradle.external.javadoc.JavadocMemberLevel.PROTECTED
		options.author = true
		options.header = rootProject.description
P
Phillip Webb 已提交
819
		options.overview = "src/api/overview.html"
820
		options.splitIndex = true
C
Chris Beams 已提交
821 822
		options.links(project.ext.javadocLinks)

823 824 825
		source subprojects.collect { project ->
			project.sourceSets.main.allJava
		}
C
Chris Beams 已提交
826

P
Phillip Webb 已提交
827
		maxMemory = "1024m"
C
Chris Beams 已提交
828
		destinationDir = new File(buildDir, "api")
829 830 831 832 833 834 835 836 837 838 839 840

		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 })
		}
841 842 843
	}

	task docsZip(type: Zip) {
P
Phillip Webb 已提交
844 845 846
		group = "Distribution"
		baseName = "spring-framework"
		classifier = "docs"
847 848 849
		description = "Builds -${classifier} archive containing api and reference " +
			"for deployment at http://static.springframework.org/spring-framework/docs."

P
Phillip Webb 已提交
850 851
		from("src/dist") {
			include "changelog.txt"
852 853 854
		}

		from (api) {
855
			into "javadoc-api"
856 857 858
		}

		from (reference) {
859
			into "spring-framework-reference"
860 861 862 863
		}
	}

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

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

P
Phillip Webb 已提交
900 901 902 903
		from("src/dist") {
			include "readme.txt"
			include "license.txt"
			include "notice.txt"
904
			into "${baseDir}"
P
Phillip Webb 已提交
905
			expand(copyright: new Date().format("yyyy"), version: project.version)
906 907 908 909 910 911 912 913 914 915 916 917 918
		}

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

		doLast() {
			def gradleOpts = "-XX:MaxPermSize=1024m -Xmx1024m"
			def gradleBatOpts = "$gradleOpts -XX:MaxHeapSize=256m"
P
Phillip Webb 已提交
974
			File wrapperFile = file("gradlew")
975 976
			wrapperFile.text = wrapperFile.text.replace("DEFAULT_JVM_OPTS=",
				"GRADLE_OPTS=\"$gradleOpts \$GRADLE_OPTS\"\nDEFAULT_JVM_OPTS=")
P
Phillip Webb 已提交
977
			File wrapperBatFile = file("gradlew.bat")
978 979 980 981
			wrapperBatFile.text = wrapperBatFile.text.replace("set DEFAULT_JVM_OPTS=",
				"set GRADLE_OPTS=$gradleBatOpts %GRADLE_OPTS%\nset DEFAULT_JVM_OPTS=")
		}
	}
982

983
}
984 985 986 987 988 989 990 991 992 993 994 995

/*
 * 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-")) {
996
			return version.replace('BUILD', qualifier)
997 998
		}
	}
999
	return version
1000
}