build.gradle 30.4 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.1")
7
		classpath("org.springframework.build.gradle:docbook-reference-plugin:0.2.4")
8
	}
9 10
}

C
Chris Beams 已提交
11
configure(allprojects) {
C
Chris Beams 已提交
12
	ext.aspectjVersion  = "1.7.1"
P
Phillip Webb 已提交
13 14 15 16
	ext.easymockVersion = "2.5.2"
	ext.hsqldbVersion   = "1.8.0.10"
	ext.junitVersion    = "4.11"
	ext.slf4jVersion    = "1.6.1"
17
	ext.gradleScriptDir = "${rootProject.projectDir}/gradle"
18

19 20 21 22 23 24 25 26
	if (rootProject.hasProperty("VERSION_QUALIFIER")) {
		def qualifier = rootProject.getProperty("VERSION_QUALIFIER")
		if (qualifier.startsWith("SPR-")) { // topic branch, e.g. SPR-1234
			// replace 3.2.0.BUILD-SNAPSHOT for 3.2.0.SPR-1234-SNAPSHOT
			version = version.replace('BUILD', qualifier)
		}
	}

27
	apply plugin: "propdeps"
P
Phillip Webb 已提交
28
	apply plugin: "java"
29 30
	apply plugin: "propdeps-eclipse"
	apply plugin: "propdeps-idea"
31
	apply from: "${gradleScriptDir}/ide.gradle"
C
Chris Beams 已提交
32

P
Phillip Webb 已提交
33
	group = "org.springframework"
34

35 36
	sourceCompatibility=1.5
	targetCompatibility=1.5
C
Chris Beams 已提交
37

P
Phillip Webb 已提交
38
	[compileJava, compileTestJava]*.options*.compilerArgs = ["-Xlint:none"]
C
Chris Beams 已提交
39

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

42
	test.systemProperty("java.awt.headless", "true")
C
Chris Beams 已提交
43

44 45 46 47
	repositories {
		maven { url "http://repo.springsource.org/libs-release" }
		maven { url "http://repo.springsource.org/ebr-maven-external" }
	}
C
Chris Beams 已提交
48

49
	dependencies {
50
		testCompile("junit:junit:${junitVersion}")
51 52
		testCompile("org.hamcrest:hamcrest-all:1.3")
		testCompile("org.easymock:easymock:${easymockVersion}")
53
	}
C
Chris Beams 已提交
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75

	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[]
76 77
}

78
configure(subprojects) { subproject ->
79
	apply plugin: "merge"
80 81 82
	apply from: "${gradleScriptDir}/publish-maven.gradle"

	jar {
P
Phillip Webb 已提交
83 84 85 86
		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
87 88 89 90 91

		from("${rootProject.projectDir}/src/dist") {
			include "license.txt"
			include "notice.txt"
			into "META-INF"
P
Phillip Webb 已提交
92
			expand(copyright: new Date().format("yyyy"), version: project.version)
93 94 95 96
		}
	}

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

99 100 101
		options.memberLevel = org.gradle.external.javadoc.JavadocMemberLevel.PROTECTED
		options.author = true
		options.header = project.name
C
Chris Beams 已提交
102 103 104 105 106 107
		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
108 109 110
	}

	task sourcesJar(type: Jar, dependsOn:classes) {
P
Phillip Webb 已提交
111
		classifier = "sources"
112
		from sourceSets.main.allJava.srcDirs
P
Phillip Webb 已提交
113
		include "**/*.java", "**/*.aj"
114 115 116
	}

	task javadocJar(type: Jar) {
P
Phillip Webb 已提交
117
		classifier = "javadoc"
118 119 120 121 122 123 124
		from javadoc
	}

	artifacts {
		archives sourcesJar
		archives javadocJar
	}
C
Chris Beams 已提交
125 126 127
}


P
Phillip Webb 已提交
128 129
project("spring-core") {
	description = "Spring Core"
130 131 132 133 134 135 136

	// 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 已提交
137 138
	def asmVersion = "4.0"
	def cglibVersion = "3.0"
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157

	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 已提交
158
					rule(pattern: "org.objectweb.asm.**", result: "org.springframework.asm.@1")
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
				}
			}
		}
	}

	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 已提交
177 178
					rule(pattern: "net.sf.cglib.**", result: "org.springframework.cglib.@1")
					// as mentioned above, transform cglib"s internal asm dependencies from
179 180
					// 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 已提交
181
					rule(pattern: "org.objectweb.asm.**", result: "org.springframework.asm.@1")
182 183 184 185 186 187
				}
			}
		}
	}

	dependencies {
188 189 190 191
		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")
192

193 194
		compile(files(asmRepackJar))
		compile("commons-logging:commons-logging:1.1.1")
195
		optional("org.aspectj:aspectjweaver:${aspectjVersion}")
196
		optional("net.sf.jopt-simple:jopt-simple:3.0")
197
		optional("log4j:log4j:1.2.17")
198 199
		testCompile("xmlunit:xmlunit:1.2")
		testCompile("org.codehaus.woodstox:wstx-asl:3.2.7")
200 201 202 203 204 205
	}

	jar {
		// inline all repackaged asm and cglib classes directly into the spring-core jar
		dependsOn asmRepackJar
		from(zipTree(asmRepackJar.archivePath)) {
P
Phillip Webb 已提交
206
			include "org/springframework/asm/**"
207 208 209
		}
		dependsOn cglibRepackJar
		from(zipTree(cglibRepackJar.archivePath)) {
P
Phillip Webb 已提交
210
			include "org/springframework/cglib/**"
211 212
		}
	}
C
Chris Beams 已提交
213 214
}

P
Phillip Webb 已提交
215 216
project("spring-beans") {
	description = "Spring Beans"
217
	dependencies {
218 219
		compile(project(":spring-core"))
		compile(files(project(":spring-core").cglibRepackJar))
220 221 222
		provided("javax.el:el-api:1.0")
		provided("javax.inject:javax.inject:1")
		testCompile("log4j:log4j:1.2.17")
223
	}
C
Chris Beams 已提交
224 225
}

P
Phillip Webb 已提交
226 227
project("spring-aop") {
	description = "Spring AOP"
228
	dependencies {
229 230 231
		compile(project(":spring-core"))
		compile(files(project(":spring-core").cglibRepackJar))
		compile(project(":spring-beans"))
232
		compile("aopalliance:aopalliance:1.0")
233 234 235
		optional("com.jamonapi:jamon:2.4")
		optional("commons-pool:commons-pool:1.5.3")
		optional("org.aspectj:aspectjweaver:${aspectjVersion}")
236
	}
C
Chris Beams 已提交
237 238
}

P
Phillip Webb 已提交
239 240
project("spring-expression") {
	description = "Spring Expression Language (SpEL)"
241
	dependencies {
242
		compile(project(":spring-core"))
243
	}
C
Chris Beams 已提交
244 245
}

P
Phillip Webb 已提交
246 247
project("spring-instrument") {
	description = "Spring Instrument"
248
	dependencies {
249
		compile(project(":spring-core"))
250 251
	}
	jar {
P
Phillip Webb 已提交
252 253
		manifest.attributes["Premain-Class"] =
			"org.springframework.instrument.InstrumentationSavingAgent"
254
	}
C
Chris Beams 已提交
255 256
}

P
Phillip Webb 已提交
257 258
project("spring-instrument-tomcat") {
	description = "Spring Instrument Tomcat"
259
	dependencies {
260
		provided("org.apache.tomcat:catalina:6.0.16")
261
	}
C
Chris Beams 已提交
262 263
}

P
Phillip Webb 已提交
264 265
project("spring-context") {
	description = "Spring Context"
266
	dependencies {
267
		optional(project(":spring-instrument"))
268 269 270 271 272
		compile(project(":spring-aop"))
		compile(project(":spring-beans"))
		compile(project(":spring-expression"))
		compile(project(":spring-core"))
		compile(files(project(":spring-core").cglibRepackJar))
273 274 275 276 277 278 279 280 281 282 283
		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}")
284
		optional("org.hibernate:hibernate-validator:4.3.0.Final")
285 286
		optional("org.aspectj:aspectjweaver:${aspectjVersion}")
		optional("org.apache.geronimo.specs:geronimo-jta_1.1_spec:1.1")
287
		testCompile("commons-dbcp:commons-dbcp:1.2.2")
288 289 290 291
		testCompile("javax.inject:com.springsource.org.atinject.tck:1.0.0")
	}

	test {
P
Phillip Webb 已提交
292
		jvmArgs = ["-disableassertions:org.aspectj.weaver.UnresolvedType"] // SPR-7989
293
	}
C
Chris Beams 已提交
294 295
}

P
Phillip Webb 已提交
296 297
project("spring-tx") {
	description = "Spring Transaction"
298
	dependencies {
299 300
		optional(project(":spring-context")) // for JCA, @EnableTransactionManagement
		optional(project(":spring-aop"))
301 302
		compile(project(":spring-beans"))
		compile(project(":spring-core"))
303
		compile("aopalliance:aopalliance:1.0")
304 305 306 307 308 309 310
		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 "org.easymock:easymockclassextension:${easymockVersion}"
		testCompile("javax.persistence:persistence-api:1.0")
		testCompile("org.aspectj:aspectjweaver:${aspectjVersion}")
311
	}
C
Chris Beams 已提交
312 313
}

P
Phillip Webb 已提交
314 315 316
project("spring-oxm") {
	description = "Spring Object/XML Marshalling"
	apply from: "oxm.gradle"
317
	dependencies {
318 319
		compile(project(":spring-beans"))
		compile(project(":spring-core"))
320
		optional(project(":spring-context")) // for Jaxb2Marshaller
321
		compile("commons-lang:commons-lang:2.5")
322 323 324 325 326
		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")
327 328 329
		testCompile("org.codehaus.jettison:jettison:1.0.1")
		testCompile("xmlunit:xmlunit:1.2")
		testCompile("xmlpull:xmlpull:1.1.3.4a")
330 331 332 333
		testCompile(files(genCastor.classesDir).builtBy(genCastor))
		testCompile(files(genJaxb.classesDir).builtBy(genJaxb))
		testCompile(files(genXmlbeans.classesDir).builtBy(genXmlbeans))
	}
C
Chris Beams 已提交
334 335
}

P
Phillip Webb 已提交
336 337
project("spring-jms") {
	description = "Spring JMS"
338
	dependencies {
339 340 341 342 343
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
		compile(project(":spring-aop"))
		compile(project(":spring-context"))
		compile(project(":spring-tx"))
344
		optional(project(":spring-oxm"))
345
		compile("aopalliance:aopalliance:1.0")
346 347 348
		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")
349 350
		optional("org.codehaus.jackson:jackson-mapper-asl:1.4.2")
		optional("com.fasterxml.jackson.core:jackson-databind:2.0.1")
351
	}
C
Chris Beams 已提交
352 353
}

P
Phillip Webb 已提交
354 355
project("spring-jdbc") {
	description = "Spring JDBC"
356
	dependencies {
357 358
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
359
		optional(project(":spring-context")) // for JndiDataSourceLookup
360
		compile(project(":spring-tx"))
361 362 363 364 365 366
		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")
367
	}
C
Chris Beams 已提交
368 369
}

P
Phillip Webb 已提交
370 371
project("spring-context-support") {
	description = "Spring Context Support"
372
	dependencies {
373 374 375
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
		compile(project(":spring-context"))
376 377 378 379 380 381 382 383 384 385
		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")
386
		optional("jasperreports:jasperreports:2.0.5")
387 388
		optional("org.slf4j:slf4j-api:${slf4jVersion}")
		provided("javax.activation:activation:1.1")
389
		testCompile("org.apache.poi:poi:3.0.2-FINAL")
390 391
		testCompile("commons-beanutils:commons-beanutils:1.8.0") // for Velocity/JasperReports
		testCompile("commons-digester:commons-digester:1.8.1") // for Velocity/JasperReports
392
		testCompile("hsqldb:hsqldb:${hsqldbVersion}")
393 394 395
	}

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

P
Phillip Webb 已提交
399 400
project("spring-web") {
	description = "Spring Web"
401
	dependencies {
402 403 404 405
		compile(project(":spring-core"))
		compile(project(":spring-beans")) // for MultiPartFilter
		compile(project(":spring-aop")) // for JaxWsPortProxyFactoryBean
		compile(project(":spring-context"))
406
		optional(project(":spring-oxm")) // for MarshallingHttpMessageConverter
407
		compile("aopalliance:aopalliance:1.0")
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425
		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 已提交
426
			exclude group: "org.eclipse.jetty.orbit", module: "javax.servlet"
427
		}
428
		optional("org.eclipse.jetty:jetty-server:8.1.5.v20120716") {
P
Phillip Webb 已提交
429
			exclude group: "org.eclipse.jetty.orbit", module: "javax.servlet"
430
		}
431
		optional("log4j:log4j:1.2.17")
432 433
		testCompile(project(":spring-context-support"))  // for JafMediaTypeFactory
		testCompile("xmlunit:xmlunit:1.2")
434 435 436
	}

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

P
Phillip Webb 已提交
440 441
project("spring-orm") {
	description = "Spring Object/Relational Mapping"
442 443
	dependencies {
		compile("aopalliance:aopalliance:1.0")
444 445 446 447 448 449 450 451 452 453 454 455
		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")
456 457 458 459
		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")
460
		testCompile("hsqldb:hsqldb:${hsqldbVersion}")
461 462 463
		testCompile(project(":spring-web").sourceSets.test.output)
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
464 465
		optional(project(":spring-aop"))
		optional(project(":spring-context"))
466 467
		compile(project(":spring-tx"))
		compile(project(":spring-jdbc"))
468
		optional(project(":spring-web"))
469
	}
C
Chris Beams 已提交
470 471
}

P
Phillip Webb 已提交
472 473
project("spring-orm-hibernate4") {
	description = "Spring Object/Relational Mapping - Hibernate 4 support"
474
	merge.into = project(":spring-orm")
475
	dependencies {
476 477
		compile(project(":spring-tx"))
		compile(project(":spring-jdbc"))
478 479
		optional("org.hibernate:hibernate-core:4.1.0.Final")
		optional("org.hibernate:hibernate-entitymanager:4.1.0.Final")
480
		optional(project(":spring-web"))
481
		optional("javax.servlet:servlet-api:2.5")
482
	}
483 484
}

P
Phillip Webb 已提交
485 486
project("spring-webmvc") {
	description = "Spring Web MVC"
487
	dependencies {
488 489 490 491 492
		compile(project(":spring-core"))
		compile(project(":spring-expression"))
		compile(project(":spring-beans"))
		compile(project(":spring-web"))
		compile(project(":spring-context"))
493 494 495 496 497 498 499 500 501 502 503 504
		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"
505
		}
506 507 508 509 510 511 512 513
		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")
514 515 516 517
		testCompile(project(":spring-aop"))
		testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}")
		testCompile("rhino:js:1.7R1")
		testCompile("xmlunit:xmlunit:1.2")
518
		testCompile("dom4j:dom4j:1.6.1") {
P
Phillip Webb 已提交
519
			exclude group: "xml-apis", module: "xml-apis"
520 521
		}
		testCompile("jaxen:jaxen:1.1.1") {
P
Phillip Webb 已提交
522 523 524
			exclude group: "xml-apis", module: "xml-apis"
			exclude group: "xom", module: "xom"
			exclude group: "xerces", module: "xercesImpl"
525
		}
526 527 528 529 530 531 532 533 534 535 536
		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")
537
		testCompile(project(":spring-web").sourceSets.test.output)
538 539 540
	}

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

P
Phillip Webb 已提交
544 545
project("spring-webmvc-tiles3") {
	description = "Spring Framework Tiles3 Integration"
546
	merge.into = project(":spring-webmvc")
547
	dependencies {
548
		compile(project(":spring-context"))
549 550 551 552 553 554
		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 已提交
555
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
556
		}
557
		optional("org.apache.tiles:tiles-servlet:3.0.1") {
P
Phillip Webb 已提交
558
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
559
		}
560
		optional("org.apache.tiles:tiles-jsp:3.0.1") {
P
Phillip Webb 已提交
561
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
562
		}
563
		optional("org.apache.tiles:tiles-el:3.0.1") {
P
Phillip Webb 已提交
564
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
565
		}
566
		provided("javax.servlet:javax.servlet-api:3.0.1")
567
		compile(project(":spring-web").sourceSets*.output) // mock request & response
568
		testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}")
569
	}
570 571
}

P
Phillip Webb 已提交
572 573
project("spring-webmvc-portlet") {
	description = "Spring Web Portlet"
574
	dependencies {
575 576
		provided("javax.servlet:servlet-api:2.5")
		provided("javax.portlet:portlet-api:2.0")
577 578 579 580 581
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
		compile(project(":spring-context"))
		compile(project(":spring-web"))
		compile(project(":spring-webmvc"))
582
		optional("commons-fileupload:commons-fileupload:1.2")
583 584 585
	}

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

P
Phillip Webb 已提交
589 590
project("spring-test") {
	description = "Spring TestContext Framework"
591
	dependencies {
592
		compile(project(":spring-core"))
593 594 595 596 597 598 599 600
		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"), )
601 602
		optional("junit:junit:${junitVersion}")
		optional("org.testng:testng:6.5.2")
603 604 605 606 607 608 609 610 611 612 613
		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}")
614
	}
C
Chris Beams 已提交
615 616
}

P
Phillip Webb 已提交
617 618
project("spring-test-mvc") {
	description = "Spring Test MVC Framework"
619
	merge.into = project(":spring-test")
620
	dependencies {
621
		optional(project(":spring-context"))
622
		compile(project(":spring-webmvc"))
623 624 625 626 627
		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")
		optional("xmlunit:xmlunit:1.2")
		testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}")
628 629 630
		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")
631 632
		testCompile("com.fasterxml.jackson.core:jackson-databind:2.0.1")
		testCompile(project(":spring-context-support"))
633 634 635 636
		testCompile(project(":spring-oxm"))
		testCompile("com.thoughtworks.xstream:xstream:1.3.1")
		testCompile("cglib:cglib-nodep:2.2")
		testCompile("rome:rome:1.0")
637 638
		testCompile("javax.activation:activation:1.1")
		testCompile("javax.mail:mail:1.4")
639 640 641 642
		testCompile("javax.xml.bind:jaxb-api:2.2.6")
		testCompile("org.easymock:easymockclassextension:${easymockVersion}")
		testCompile("org.apache.tiles:tiles-request-api:1.0.1")
		testCompile("org.apache.tiles:tiles-api:3.0.1")
643
		testCompile("org.apache.tiles:tiles-core:3.0.1") {
P
Phillip Webb 已提交
644
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
645 646
		}
		testCompile("org.apache.tiles:tiles-servlet:3.0.1") {
P
Phillip Webb 已提交
647
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
648 649
		}
	}
R
Rob Winch 已提交
650 651
}

P
Phillip Webb 已提交
652 653
project("spring-struts") {
	description = "Spring Struts"
654
	dependencies {
655 656 657 658 659 660 661
		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")
662 663
		provided("javax.servlet:servlet-api:2.5")
		provided("javax.servlet:jstl:1.2")
664
		testCompile(project(":spring-test"))
665
	}
C
Chris Beams 已提交
666 667
}

P
Phillip Webb 已提交
668 669 670
project("spring-aspects") {
	description = "Spring Aspects"
	apply from: "aspects.gradle"
671
	dependencies {
672 673 674 675 676 677
		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
678
		aspects(project(":spring-orm"))
679 680
		provided("javax.persistence:persistence-api:1.0")
		testCompile("javax.mail:mail:1.4")
681
		ajc("org.aspectj:aspectjtools:${aspectjVersion}")
C
Chris Beams 已提交
682
		rt("org.aspectj:aspectjrt:${aspectjVersion}")
683 684 685 686
		compile("org.aspectj:aspectjweaver:${aspectjVersion}")
		testCompile(project(":spring-core")) // for CodeStyleAspect
		compile(project(":spring-beans")) // for "p" namespace visibility
		testCompile(project(":spring-test"))
687 688
	}
	eclipse.project {
P
Phillip Webb 已提交
689
		natures += "org.eclipse.ajdt.ui.ajnature"
690
		buildCommands = [new org.gradle.plugins.ide.eclipse.model.
P
Phillip Webb 已提交
691
				BuildCommand("org.eclipse.ajdt.core.ajbuilder")]
692
	}
C
Chris Beams 已提交
693 694
}

695
configure(rootProject) {
P
Phillip Webb 已提交
696
	description = "Spring Framework"
697

P
Phillip Webb 已提交
698
	apply plugin: "docbook-reference"
699
	apply plugin: "groovy"
700 701 702
	apply from: "${gradleScriptDir}/jdiff.gradle"

	reference {
P
Phillip Webb 已提交
703 704
		sourceDir = file("src/reference/docbook")
		pdfFilename = "spring-framework-reference.pdf"
705 706
	}

P
Phillip Webb 已提交
707
	// don"t publish the default jar for the root project
708 709 710
	configurations.archives.artifacts.clear()

	dependencies { // for integration tests
711 712 713 714 715 716 717 718 719 720
		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"))
721
		testCompile(project(":spring-orm"))
722 723
		testCompile("org.hibernate:hibernate-core:4.1.0.Final")
		testCompile("javax.servlet:servlet-api:2.5")
724 725 726 727 728
		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}")
729 730 731
	}

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

736 737 738
		options.memberLevel = org.gradle.external.javadoc.JavadocMemberLevel.PROTECTED
		options.author = true
		options.header = rootProject.description
P
Phillip Webb 已提交
739
		options.overview = "src/api/overview.html"
740
		options.splitIndex = true
C
Chris Beams 已提交
741 742
		options.links(project.ext.javadocLinks)

743 744 745
		source subprojects.collect { project ->
			project.sourceSets.main.allJava
		}
C
Chris Beams 已提交
746 747 748 749 750 751 752 753 754 755 756

		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 })

P
Phillip Webb 已提交
757
		maxMemory = "1024m"
C
Chris Beams 已提交
758
		destinationDir = new File(buildDir, "api")
759 760 761
	}

	task docsZip(type: Zip) {
P
Phillip Webb 已提交
762 763 764
		group = "Distribution"
		baseName = "spring-framework"
		classifier = "docs"
765 766 767
		description = "Builds -${classifier} archive containing api and reference " +
			"for deployment at http://static.springframework.org/spring-framework/docs."

P
Phillip Webb 已提交
768 769
		from("src/dist") {
			include "changelog.txt"
770 771 772
		}

		from (api) {
773
			into "javadoc-api"
774 775 776
		}

		from (reference) {
777
			into "spring-framework-reference"
778 779 780 781
		}
	}

	task schemaZip(type: Zip) {
P
Phillip Webb 已提交
782 783 784
		group = "Distribution"
		baseName = "spring-framework"
		classifier = "schema"
785 786 787 788 789 790 791
		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 已提交
792
				it.path.endsWith("META-INF/spring.schemas")
793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809
			}?.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 已提交
810 811 812
		group = "Distribution"
		baseName = "spring-framework"
		classifier = "dist"
813 814 815 816 817
		description = "Builds -${classifier} archive, containing all jars and docs, " +
					"suitable for community download page."

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

P
Phillip Webb 已提交
818 819 820 821
		from("src/dist") {
			include "readme.txt"
			include "license.txt"
			include "notice.txt"
822
			into "${baseDir}"
P
Phillip Webb 已提交
823
			expand(copyright: new Date().format("yyyy"), version: project.version)
824 825 826 827 828 829 830 831 832 833 834 835 836
		}

		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 已提交
837
				if (subproject.tasks.findByPath("sourcesJar")) {
838 839
					from subproject.sourcesJar
				}
P
Phillip Webb 已提交
840
				if (subproject.tasks.findByPath("javadocJar")) {
841 842 843 844 845 846 847 848 849
					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 已提交
850 851 852
		group = "Distribution"
		baseName = "spring-framework"
		classifier = "dist-with-deps"
853 854 855 856 857 858 859 860 861 862
		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 ->
863 864
					(subproject.configurations.runtime.resolvedConfiguration.resolvedArtifacts +
					subproject.configurations.optional.resolvedConfiguration.resolvedArtifacts).each { artifact ->
865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885
						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 已提交
886 887
		description = "Generates gradlew[.bat] scripts"
		gradleVersion = "1.3"
888 889 890 891

		doLast() {
			def gradleOpts = "-XX:MaxPermSize=1024m -Xmx1024m"
			def gradleBatOpts = "$gradleOpts -XX:MaxHeapSize=256m"
P
Phillip Webb 已提交
892
			File wrapperFile = file("gradlew")
893 894
			wrapperFile.text = wrapperFile.text.replace("DEFAULT_JVM_OPTS=",
				"GRADLE_OPTS=\"$gradleOpts \$GRADLE_OPTS\"\nDEFAULT_JVM_OPTS=")
P
Phillip Webb 已提交
895
			File wrapperBatFile = file("gradlew.bat")
896 897 898 899
			wrapperBatFile.text = wrapperBatFile.text.replace("set DEFAULT_JVM_OPTS=",
				"set GRADLE_OPTS=$gradleBatOpts %GRADLE_OPTS%\nset DEFAULT_JVM_OPTS=")
		}
	}
900
}