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

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

J
Juergen Hoeller 已提交
15
	ext.aspectjVersion  = "1.8.0.M1"
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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
	[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 已提交
46

47 48 49 50 51 52 53 54 55 56 57
	compileJava {
		sourceCompatibility=1.6
		targetCompatibility=1.6
	}

	compileTestJava {
		sourceCompatibility=1.8
		targetCompatibility=1.8
		compileTestJava.options.compilerArgs += "-parameters"
	}

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

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

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

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

	ext.javadocLinks = [
P
Phillip Webb 已提交
83
		"http://docs.oracle.com/javase/7/docs/api/",
J
Juergen Hoeller 已提交
84 85 86 87
		"http://docs.oracle.com/javaee/6/api/",
		"http://docs.oracle.com/cd/E13222_01/wls/docs90/javadocs/", // CommonJ
		"http://pic.dhe.ibm.com/infocenter/wasinfo/v7r0/topic/com.ibm.websphere.javadoc.doc/web/apidocs/",
		"http://glassfish.java.net/nonav/docs/v3/api/",
P
Phillip Webb 已提交
88 89
		"http://docs.jboss.org/jbossas/javadoc/4.0.5/connector/",
		"http://docs.jboss.org/jbossas/javadoc/7.1.2.Final/",
J
Juergen Hoeller 已提交
90 91 92 93 94
		"http://commons.apache.org/proper/commons-lang/javadocs/api-2.5/",
		"http://commons.apache.org/proper/commons-codec/apidocs/",
		"http://commons.apache.org/proper/commons-dbcp/apidocs/",
		"http://portals.apache.org/pluto/portlet-2.0-apidocs/",
		"http://tiles.apache.org/framework/apidocs/",
P
Phillip Webb 已提交
95
		"http://aopalliance.sourceforge.net/doc/",
C
Chris Beams 已提交
96
		"http://www.eclipse.org/aspectj/doc/released/aspectj5rt-api/",
J
Juergen Hoeller 已提交
97 98
		"http://ehcache.org/apidocs/",
		"http://quartz-scheduler.org/api/2.1.7/",
99
		"http://jackson.codehaus.org/1.9.12/javadoc/",
J
Juergen Hoeller 已提交
100
		"http://fasterxml.github.com/jackson-core/javadoc/2.2.0/",
C
Chris Beams 已提交
101
	] 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
		options.links(project.ext.javadocLinks)
129
		options.addStringOption('Xdoclint:none', '-quiet')
C
Chris Beams 已提交
130 131 132 133 134

		// 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
135 136 137
	}

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

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

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

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

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

	configurations.archives.artifacts.clear()
}

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

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

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

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

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

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

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

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

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

		dependsOn objenesisRepackJar
		from(zipTree(objenesisRepackJar.archivePath)) {
			include "org/springframework/objenesis/**"
		}
251
	}
C
Chris Beams 已提交
252 253
}

P
Phillip Webb 已提交
254 255
project("spring-beans") {
	description = "Spring Beans"
256

257
	dependencies {
258 259
		compile(project(":spring-core"))
		compile(files(project(":spring-core").cglibRepackJar))
260
		provided("javax.el:javax.el-api:2.2.4")
261 262
		provided("javax.inject:javax.inject:1")
		testCompile("log4j:log4j:1.2.17")
263
	}
C
Chris Beams 已提交
264 265
}

P
Phillip Webb 已提交
266 267
project("spring-aop") {
	description = "Spring AOP"
268

269
	dependencies {
270 271
		compile(project(":spring-core"))
		compile(files(project(":spring-core").cglibRepackJar))
272
		compile(files(project(":spring-core").objenesisRepackJar))
273
		compile(project(":spring-beans"))
274
		compile("aopalliance:aopalliance:1.0")
275 276 277
		optional("com.jamonapi:jamon:2.4")
		optional("commons-pool:commons-pool:1.5.3")
		optional("org.aspectj:aspectjweaver:${aspectjVersion}")
278
	}
C
Chris Beams 已提交
279 280
}

P
Phillip Webb 已提交
281 282
project("spring-expression") {
	description = "Spring Expression Language (SpEL)"
283

284
	dependencies {
285
		compile(project(":spring-core"))
286
	}
C
Chris Beams 已提交
287 288
}

P
Phillip Webb 已提交
289 290
project("spring-instrument") {
	description = "Spring Instrument"
291

292
	jar {
P
Phillip Webb 已提交
293 294
		manifest.attributes["Premain-Class"] =
			"org.springframework.instrument.InstrumentationSavingAgent"
295 296 297
		manifest.attributes["Can-Redefine-Classes"] = "true"
		manifest.attributes["Can-Retransform-Classes"] = "true"
		manifest.attributes["Can-Set-Native-Method-Prefix"] = "false"
298
	}
C
Chris Beams 已提交
299 300
}

P
Phillip Webb 已提交
301 302
project("spring-instrument-tomcat") {
	description = "Spring Instrument Tomcat"
303

304
	dependencies {
305
		provided("org.apache.tomcat:catalina:6.0.16")
306
	}
C
Chris Beams 已提交
307 308
}

P
Phillip Webb 已提交
309 310
project("spring-context") {
	description = "Spring Context"
311

312
	dependencies {
313
		optional(project(":spring-instrument"))
314 315 316 317 318
		compile(project(":spring-aop"))
		compile(project(":spring-beans"))
		compile(project(":spring-expression"))
		compile(project(":spring-core"))
		compile(files(project(":spring-core").cglibRepackJar))
319 320
		optional("javax.ejb:ejb-api:3.0")
		optional("javax.inject:javax.inject:1")
321
		optional("javax.enterprise.concurrent:javax.enterprise.concurrent-api:1.0-b06")
322
		optional("org.apache.geronimo.specs:geronimo-jms_1.1_spec:1.1")
323
		optional("org.eclipse.persistence:javax.persistence:2.0.0")
324
		optional("org.beanshell:bsh:2.0b4")
325 326
		optional("org.codehaus.groovy:groovy-all:1.8.9")
		optional("org.jruby:jruby:1.7.2")
327
		optional("joda-time:joda-time:2.2")
328
		optional("org.slf4j:slf4j-api:${slf4jVersion}")
329
		optional("javax.validation:validation-api:1.0.0.GA")
330
		optional("org.hibernate:hibernate-validator:4.3.0.Final")
331 332
		optional("org.aspectj:aspectjweaver:${aspectjVersion}")
		optional("org.apache.geronimo.specs:geronimo-jta_1.1_spec:1.1")
333
		testCompile("commons-dbcp:commons-dbcp:1.2.2")
334
		testCompile("javax.inject:javax.inject-tck:1")
335 336
	}

337 338 339
	// pick up RmiInvocationWrapperRTD.xml in src/main
	sourceSets.main.resources.srcDirs += "src/main/java"

340
	test {
P
Phillip Webb 已提交
341
		jvmArgs = ["-disableassertions:org.aspectj.weaver.UnresolvedType"] // SPR-7989
342
	}
343 344 345 346 347 348 349 350 351 352
}

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

	dependencies {
		compile(project(":spring-beans"))
		compile(project(":spring-core"))
		compile(project(":spring-context"))
		optional(project(":spring-websocket"))
353
		optional(project(":spring-webmvc"))
354
		optional("com.fasterxml.jackson.core:jackson-databind:2.2.0")
A
Andy Wilkinson 已提交
355 356
		optional("org.projectreactor:reactor-core:1.0.0.M3")
		optional("org.projectreactor:reactor-tcp:1.0.0.M3")
357
		optional("com.lmax:disruptor:3.1.1")
358 359
		optional("org.eclipse.jetty.websocket:websocket-server:9.0.5.v20130815")
		optional("org.eclipse.jetty.websocket:websocket-client:9.0.5.v20130815")
360 361
		testCompile(project(":spring-test"))
		testCompile("com.thoughtworks.xstream:xstream:1.4.4")
362 363
		testCompile("commons-dbcp:commons-dbcp:1.2.2")
		testCompile("javax.inject:javax.inject-tck:1")
364 365
		testCompile("javax.servlet:javax.servlet-api:3.1.0")
		testCompile("log4j:log4j:1.2.17")
366 367 368 369 370
		testCompile("org.apache.activemq:activemq-broker:5.8.0")
		testCompile("org.apache.activemq:activemq-kahadb-store:5.8.0") {
			exclude group: "org.springframework", module: "spring-context"
		}
		testCompile("org.apache.activemq:activemq-stomp:5.8.0")
371 372 373
		testCompile("org.eclipse.jetty:jetty-webapp:9.0.5.v20130815") {
			exclude group: "org.eclipse.jetty.orbit", module: "javax.servlet"
		}
374 375
		testCompile("org.apache.tomcat.embed:tomcat-embed-core:8.0.0-RC3")
		testCompile("org.apache.tomcat.embed:tomcat-embed-logging-juli:8.0.0-RC3")
376
		testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}")
377
	}
C
Chris Beams 已提交
378 379
}

P
Phillip Webb 已提交
380 381
project("spring-tx") {
	description = "Spring Transaction"
382

383
	dependencies {
384 385
		optional(project(":spring-context")) // for JCA, @EnableTransactionManagement
		optional(project(":spring-aop"))
386 387
		compile(project(":spring-beans"))
		compile(project(":spring-core"))
388
		compile("aopalliance:aopalliance:1.0")
389 390
		provided("com.ibm.websphere:uow:6.0.2.17")
		optional("javax.resource:connector-api:1.5")
391
		optional("javax.transaction:javax.transaction-api:1.2-b03")
392
		optional("javax.ejb:ejb-api:3.0")
393
		testCompile("org.eclipse.persistence:javax.persistence:2.0.0")
394
		testCompile("org.aspectj:aspectjweaver:${aspectjVersion}")
395
	}
C
Chris Beams 已提交
396 397
}

P
Phillip Webb 已提交
398 399 400
project("spring-oxm") {
	description = "Spring Object/XML Marshalling"
	apply from: "oxm.gradle"
401

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

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

414
	dependencies {
415 416
		compile(project(":spring-beans"))
		compile(project(":spring-core"))
417
		testCompile(project(":spring-context"))
418 419 420
		optional("com.thoughtworks.xstream:xstream:1.4.4")
		optional("org.jibx:jibx-run:1.2.5")
		optional("org.apache.xmlbeans:xmlbeans:2.6.0")
421
		optional("org.codehaus.castor:castor-xml:1.3.2")
422
		testCompile("org.codehaus.jettison:jettison:1.0.1")
P
Phillip Webb 已提交
423
		testCompile("xmlunit:xmlunit:1.3")
424
		testCompile("xmlpull:xmlpull:1.1.3.4a")
425 426 427 428
		testCompile(files(genCastor.classesDir).builtBy(genCastor))
		testCompile(files(genJaxb.classesDir).builtBy(genJaxb))
		testCompile(files(genXmlbeans.classesDir).builtBy(genXmlbeans))
	}
C
Chris Beams 已提交
429 430
}

P
Phillip Webb 已提交
431 432
project("spring-jms") {
	description = "Spring JMS"
433

434
	dependencies {
435 436 437 438 439
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
		compile(project(":spring-aop"))
		compile(project(":spring-context"))
		compile(project(":spring-tx"))
440
		optional(project(":spring-oxm"))
441
		compile("aopalliance:aopalliance:1.0")
442 443 444
		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")
445 446
		optional("org.codehaus.jackson:jackson-mapper-asl:1.9.12")
		optional("com.fasterxml.jackson.core:jackson-databind:2.2.0")
447
	}
C
Chris Beams 已提交
448 449
}

P
Phillip Webb 已提交
450 451
project("spring-jdbc") {
	description = "Spring JDBC"
452

453
	dependencies {
454 455
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
456
		optional(project(":spring-context")) // for JndiDataSourceLookup
457
		compile(project(":spring-tx"))
458 459 460 461 462 463
		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")
464
	}
C
Chris Beams 已提交
465 466
}

P
Phillip Webb 已提交
467 468
project("spring-context-support") {
	description = "Spring Context Support"
469

470
	dependencies {
471 472 473
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
		compile(project(":spring-context"))
474 475
		optional(project(":spring-jdbc")) // for Quartz support
		optional(project(":spring-tx")) // for Quartz support
476 477 478 479
		optional("javax.mail:mail:1.4.7")
		optional("javax.cache:cache-api:0.6")
		optional("net.sf.ehcache:ehcache-core:2.6.5")
		optional("org.quartz-scheduler:quartz:1.8.6") {
480 481
			exclude group: "org.slf4j", module: "slf4j-log4j12"
		}
482
		optional("org.codehaus.fabric3.api:commonj:1.1.0")
483
		optional("org.apache.velocity:velocity:1.7")
484
		optional("org.freemarker:freemarker:2.3.19")
485
		optional("com.lowagie:itext:2.1.7")
486
		optional("net.sf.jasperreports:jasperreports:5.1.0")
487 488
		optional("org.slf4j:slf4j-api:${slf4jVersion}")
		provided("javax.activation:activation:1.1")
489
		testCompile("org.apache.poi:poi:3.9")
490 491
		testCompile("commons-beanutils:commons-beanutils:1.8.0") // for Velocity/JasperReports
		testCompile("commons-digester:commons-digester:1.8.1") // for Velocity/JasperReports
492
		testCompile("hsqldb:hsqldb:${hsqldbVersion}")
493 494 495
	}

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

P
Phillip Webb 已提交
499 500
project("spring-web") {
	description = "Spring Web"
501

502
	dependencies {
503 504 505 506
		compile(project(":spring-core"))
		compile(project(":spring-beans")) // for MultiPartFilter
		compile(project(":spring-aop")) // for JaxWsPortProxyFactoryBean
		compile(project(":spring-context"))
507
		optional(project(":spring-oxm")) // for MarshallingHttpMessageConverter
508
		compile("aopalliance:aopalliance:1.0")
509
		provided("javax.el:javax.el-api:2.2.4")
510
		provided("com.sun.faces:jsf-api:2.1.7")
511 512 513 514
		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")
515
		optional("com.caucho:hessian:4.0.7")
516
		optional("rome:rome:1.0")
517
		optional("commons-fileupload:commons-fileupload:1.3")
A
Arjen Poutsma 已提交
518 519
		optional("org.apache.httpcomponents:httpclient:4.3-beta2")
		optional("org.apache.httpcomponents:httpasyncclient:4.0-beta4")
520 521
		optional("org.codehaus.jackson:jackson-mapper-asl:1.9.12")
		optional("com.fasterxml.jackson.core:jackson-databind:2.2.0")
522 523
		optional("taglibs:standard:1.1.2")
		optional("org.eclipse.jetty:jetty-servlet:8.1.5.v20120716") {
P
Phillip Webb 已提交
524
			exclude group: "org.eclipse.jetty.orbit", module: "javax.servlet"
525
		}
526
		optional("org.eclipse.jetty:jetty-server:8.1.5.v20120716") {
P
Phillip Webb 已提交
527
			exclude group: "org.eclipse.jetty.orbit", module: "javax.servlet"
528
		}
529
		optional("log4j:log4j:1.2.17")
530
		testCompile(project(":spring-context-support"))  // for JafMediaTypeFactory
P
Phillip Webb 已提交
531
		testCompile("xmlunit:xmlunit:1.3")
532 533 534
	}

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

538
project("spring-websocket") {
539
	description = "Spring WebSocket"
540 541 542 543 544

	dependencies {
		compile(project(":spring-core"))
		compile(project(":spring-context"))
		compile(project(":spring-web"))
545
		optional(project(":spring-webmvc"))
546
		optional("javax.servlet:javax.servlet-api:3.1.0")
547
		optional("javax.websocket:javax.websocket-api:1.0")
548
		optional("org.apache.tomcat:tomcat-websocket:8.0.0-RC3") {
549 550 551
			exclude group: "org.apache.tomcat", module: "tomcat-websocket-api"
			exclude group: "org.apache.tomcat", module: "tomcat-servlet-api"
		}
552 553
		optional("org.glassfish.tyrus:tyrus-websocket-core:1.2.1")
		optional("org.glassfish.tyrus:tyrus-container-servlet:1.2.1")
554
		optional("org.eclipse.jetty:jetty-webapp:9.0.5.v20130815") {
555 556
			exclude group: "org.eclipse.jetty.orbit", module: "javax.servlet"
		}
557 558
		optional("org.eclipse.jetty.websocket:websocket-server:9.0.5.v20130815")
		optional("org.eclipse.jetty.websocket:websocket-client:9.0.5.v20130815")
R
Rossen Stoyanchev 已提交
559 560
		optional("com.fasterxml.jackson.core:jackson-databind:2.2.0")
		optional("org.codehaus.jackson:jackson-mapper-asl:1.9.12")
561
		testCompile("org.apache.tomcat.embed:tomcat-embed-core:8.0.0-RC3")
562 563
		testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}")
		testCompile("log4j:log4j:1.2.17")
564 565 566
	}
}

P
Phillip Webb 已提交
567 568
project("spring-orm") {
	description = "Spring Object/Relational Mapping"
569

570 571
	dependencies {
		compile("aopalliance:aopalliance:1.0")
572 573 574 575 576 577
		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")
578
		optional("javax.jdo:jdo-api:3.0")
579
		provided("javax.servlet:javax.servlet-api:3.0.1")
580 581
		testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}")
		testCompile("commons-dbcp:commons-dbcp:1.2.2")
582
		testCompile("hsqldb:hsqldb:${hsqldbVersion}")
583 584
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
585 586
		optional(project(":spring-aop"))
		optional(project(":spring-context"))
587 588
		compile(project(":spring-tx"))
		compile(project(":spring-jdbc"))
589
		optional(project(":spring-web"))
590
	}
C
Chris Beams 已提交
591 592
}

P
Phillip Webb 已提交
593 594
project("spring-orm-hibernate4") {
	description = "Spring Object/Relational Mapping - Hibernate 4 support"
595
	merge.into = project(":spring-orm")
596

597
	dependencies {
598 599
		provided(project(":spring-tx"))
		provided(project(":spring-jdbc"))
J
Juergen Hoeller 已提交
600 601
		optional("org.hibernate:hibernate-core:4.2.2.Final")
		optional("org.hibernate:hibernate-entitymanager:4.2.2.Final")
602
		optional(project(":spring-web"))
603
		optional("javax.servlet:javax.servlet-api:3.0.1")
604
	}
605 606
}

P
Phillip Webb 已提交
607 608
project("spring-webmvc") {
	description = "Spring Web MVC"
609

610
	dependencies {
611 612 613 614 615
		compile(project(":spring-core"))
		compile(project(":spring-expression"))
		compile(project(":spring-beans"))
		compile(project(":spring-web"))
		compile(project(":spring-context"))
616 617 618 619 620 621 622
		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")
623
		optional("org.apache.poi:poi:3.9")
624
		optional("com.lowagie:itext:2.1.7")
625
		optional("net.sf.jasperreports:jasperreports:5.1.0") {
626
			exclude group: "xml-apis", module: "xml-apis"
627
		}
628
		optional("rome:rome:1.0")
629 630
		optional("org.apache.velocity:velocity:1.7")
		optional("velocity-tools:velocity-tools-view:1.4")
631 632 633
		optional("org.freemarker:freemarker:2.3.19")
		optional("org.codehaus.jackson:jackson-mapper-asl:1.9.12")
		optional("com.fasterxml.jackson.core:jackson-databind:2.2.0")
634 635 636
		provided("javax.servlet:jstl:1.2")
		provided("javax.servlet:javax.servlet-api:3.0.1")
		provided("javax.servlet.jsp:jsp-api:2.1")
637 638 639
		testCompile(project(":spring-aop"))
		testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}")
		testCompile("rhino:js:1.7R1")
P
Phillip Webb 已提交
640
		testCompile("xmlunit:xmlunit:1.3")
641
		testCompile("dom4j:dom4j:1.6.1") {
P
Phillip Webb 已提交
642
			exclude group: "xml-apis", module: "xml-apis"
643 644
		}
		testCompile("jaxen:jaxen:1.1.1") {
P
Phillip Webb 已提交
645 646 647
			exclude group: "xml-apis", module: "xml-apis"
			exclude group: "xom", module: "xom"
			exclude group: "xerces", module: "xercesImpl"
648
		}
649 650 651 652 653 654 655 656 657 658
		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")
A
Arjen Poutsma 已提交
659
		testCompile("org.apache.httpcomponents:httpclient:4.3-beta2")
660 661 662
	}

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

P
Phillip Webb 已提交
666 667
project("spring-webmvc-tiles3") {
	description = "Spring Framework Tiles3 Integration"
668
	merge.into = project(":spring-webmvc")
669

670
	dependencies {
671 672
		provided(project(":spring-context"))
		provided(project(":spring-web"))
673
		provided("javax.el:javax.el-api:2.2.4")
674 675 676 677 678
		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 已提交
679
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
680
		}
681
		optional("org.apache.tiles:tiles-servlet:3.0.1") {
P
Phillip Webb 已提交
682
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
683
		}
684
		optional("org.apache.tiles:tiles-jsp:3.0.1") {
P
Phillip Webb 已提交
685
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
686 687 688
		}
		optional("org.apache.tiles:tiles-extras:3.0.1") {
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
689
		}
690
		optional("org.apache.tiles:tiles-el:3.0.1") {
P
Phillip Webb 已提交
691
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
692
		}
693 694
		provided("javax.servlet:javax.servlet-api:3.0.1")
		testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}")
695
	}
696 697
}

P
Phillip Webb 已提交
698 699
project("spring-webmvc-portlet") {
	description = "Spring Web Portlet"
700

701
	dependencies {
702
		provided("javax.servlet:javax.servlet-api:3.0.1")
703
		provided("javax.portlet:portlet-api:2.0")
704 705 706 707 708
		compile(project(":spring-core"))
		compile(project(":spring-beans"))
		compile(project(":spring-context"))
		compile(project(":spring-web"))
		compile(project(":spring-webmvc"))
709
		optional("commons-fileupload:commons-fileupload:1.2")
710 711 712
	}

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

P
Phillip Webb 已提交
716 717
project("spring-test") {
	description = "Spring TestContext Framework"
718

719
	dependencies {
720
		compile(project(":spring-core"))
721 722 723 724 725 726 727 728
		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"), )
729
		optional("junit:junit:${junitVersion}")
S
Sam Brannen 已提交
730
		optional("org.testng:testng:6.8.5")
731
		optional("javax.servlet:javax.servlet-api:3.0.1")
732 733
		optional("javax.servlet.jsp:jsp-api:2.1")
		optional("javax.portlet:portlet-api:2.0")
734
		optional("org.eclipse.persistence:javax.persistence:2.0.0")
735
		optional("org.aspectj:aspectjweaver:${aspectjVersion}")
736
		testCompile("org.hibernate:hibernate-core:3.6.9.Final")
737 738 739 740 741
		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}")
742
	}
743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761

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

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

P
Phillip Webb 已提交
764 765
project("spring-test-mvc") {
	description = "Spring Test MVC Framework"
766
	merge.into = project(":spring-test")
767

768
	dependencies {
769
		optional(project(":spring-context"))
770
		provided(project(":spring-webmvc"))
771 772 773
		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 已提交
774
		optional("xmlunit:xmlunit:1.3")
775
		testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}")
776 777
		testCompile("javax.servlet:jstl:1.2")
		testCompile("org.hibernate:hibernate-validator:4.3.0.Final")
778 779
		testCompile("org.codehaus.jackson:jackson-mapper-asl:1.9.12")
		testCompile("com.fasterxml.jackson.core:jackson-databind:2.2.0")
780
		testCompile(project(":spring-context-support"))
781
		testCompile(project(":spring-oxm"))
782
		testCompile("com.thoughtworks.xstream:xstream:1.4.4")
783
		testCompile("rome:rome:1.0")
784
		testCompile("javax.activation:activation:1.1")
785
		testCompile("javax.mail:mail:1.4.7")
786 787
		testCompile("org.apache.tiles:tiles-request-api:1.0.1")
		testCompile("org.apache.tiles:tiles-api:3.0.1")
788
		testCompile("org.apache.tiles:tiles-core:3.0.1") {
P
Phillip Webb 已提交
789
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
790 791
		}
		testCompile("org.apache.tiles:tiles-servlet:3.0.1") {
P
Phillip Webb 已提交
792
			exclude group: "org.slf4j", module: "jcl-over-slf4j"
793 794
		}
	}
R
Rob Winch 已提交
795 796
}

P
Phillip Webb 已提交
797 798 799
project("spring-aspects") {
	description = "Spring Aspects"
	apply from: "aspects.gradle"
800

801
	dependencies {
802 803 804 805 806 807
		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
808
		aspects(project(":spring-orm"))
809
		provided("org.eclipse.persistence:javax.persistence:2.0.0")
810
		testCompile("javax.mail:mail:1.4.7")
811
		ajc("org.aspectj:aspectjtools:${aspectjVersion}")
C
Chris Beams 已提交
812
		rt("org.aspectj:aspectjrt:${aspectjVersion}")
813 814 815 816
		compile("org.aspectj:aspectjweaver:${aspectjVersion}")
		testCompile(project(":spring-core")) // for CodeStyleAspect
		compile(project(":spring-beans")) // for "p" namespace visibility
		testCompile(project(":spring-test"))
817
	}
818

819
	eclipse.project {
P
Phillip Webb 已提交
820
		natures += "org.eclipse.ajdt.ui.ajnature"
821
		buildCommands = [new org.gradle.plugins.ide.eclipse.model.
P
Phillip Webb 已提交
822
				BuildCommand("org.eclipse.ajdt.core.ajbuilder")]
823
	}
C
Chris Beams 已提交
824 825
}

826
configure(rootProject) {
P
Phillip Webb 已提交
827
	description = "Spring Framework"
828

P
Phillip Webb 已提交
829
	apply plugin: "docbook-reference"
830
	apply plugin: "groovy"
831
	// apply plugin: "detect-split-packages"
832 833 834
	apply from: "${gradleScriptDir}/jdiff.gradle"

	reference {
P
Phillip Webb 已提交
835 836
		sourceDir = file("src/reference/docbook")
		pdfFilename = "spring-framework-reference.pdf"
837 838
	}

839 840 841 842 843
	// TODO: DetectSplitPackagesPlugin fails in line 154 due to method not found on java.io.File.
	// TODO: Possibly related to user rights or OS differences; passes on local Windows machine.
	// detectSplitPackages {
	//	projectsToScan -= project(":spring-instrument-tomcat")
	// }
844

C
Chris Beams 已提交
845
	// don't publish the default jar for the root project
846 847 848
	configurations.archives.artifacts.clear()

	dependencies { // for integration tests
849 850 851 852 853 854 855 856 857 858
		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"))
859
		testCompile(project(":spring-orm"))
J
Juergen Hoeller 已提交
860
		testCompile("org.hibernate:hibernate-core:4.2.2.Final")
861
		testCompile("javax.servlet:javax.servlet-api:3.0.1")
862 863 864 865 866
		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}")
867 868 869
	}

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

874 875 876 877 878
		dependsOn {
			subprojects.collect {
				it.tasks.getByName("jar")
			}
		}
879 880 881
		options.memberLevel = org.gradle.external.javadoc.JavadocMemberLevel.PROTECTED
		options.author = true
		options.header = rootProject.description
P
Phillip Webb 已提交
882
		options.overview = "src/api/overview.html"
883
		options.stylesheetFile = file("src/api/stylesheet.css")
884
		options.splitIndex = true
C
Chris Beams 已提交
885
		options.links(project.ext.javadocLinks)
886
		options.addStringOption('Xdoclint:none', '-quiet')
C
Chris Beams 已提交
887

888 889 890
		source subprojects.collect { project ->
			project.sourceSets.main.allJava
		}
C
Chris Beams 已提交
891

P
Phillip Webb 已提交
892
		maxMemory = "1024m"
C
Chris Beams 已提交
893
		destinationDir = new File(buildDir, "api")
894 895 896 897 898 899 900 901 902 903 904 905

		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 })
		}
906 907 908
	}

	task docsZip(type: Zip) {
P
Phillip Webb 已提交
909 910 911
		group = "Distribution"
		baseName = "spring-framework"
		classifier = "docs"
912 913 914
		description = "Builds -${classifier} archive containing api and reference " +
			"for deployment at http://static.springframework.org/spring-framework/docs."

P
Phillip Webb 已提交
915 916
		from("src/dist") {
			include "changelog.txt"
917 918 919
		}

		from (api) {
920
			into "javadoc-api"
921 922 923
		}

		from (reference) {
924
			into "spring-framework-reference"
925 926 927 928
		}
	}

	task schemaZip(type: Zip) {
P
Phillip Webb 已提交
929 930 931
		group = "Distribution"
		baseName = "spring-framework"
		classifier = "schema"
932 933 934 935 936 937 938
		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 已提交
939
				it.path.endsWith("META-INF/spring.schemas")
940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956
			}?.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 已提交
957 958 959
		group = "Distribution"
		baseName = "spring-framework"
		classifier = "dist"
960 961 962 963 964
		description = "Builds -${classifier} archive, containing all jars and docs, " +
					"suitable for community download page."

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

P
Phillip Webb 已提交
965 966 967 968
		from("src/dist") {
			include "readme.txt"
			include "license.txt"
			include "notice.txt"
969
			into "${baseDir}"
P
Phillip Webb 已提交
970
			expand(copyright: new Date().format("yyyy"), version: project.version)
971 972 973 974 975 976 977 978 979 980 981 982 983
		}

		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 已提交
984
				if (subproject.tasks.findByPath("sourcesJar")) {
985 986
					from subproject.sourcesJar
				}
P
Phillip Webb 已提交
987
				if (subproject.tasks.findByPath("javadocJar")) {
988 989 990 991 992 993 994 995 996
					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 已提交
997 998 999
		group = "Distribution"
		baseName = "spring-framework"
		classifier = "dist-with-deps"
1000 1001 1002 1003 1004 1005 1006 1007 1008 1009
		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 ->
1010 1011
					(subproject.configurations.runtime.resolvedConfiguration.resolvedArtifacts +
					subproject.configurations.optional.resolvedConfiguration.resolvedArtifacts).each { artifact ->
1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032
						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 已提交
1033
		description = "Generates gradlew[.bat] scripts"
R
Rob Winch 已提交
1034
		gradleVersion = "1.6"
1035 1036

		doLast() {
1037
			def gradleOpts = "-XX:MaxMetaspaceSize=1024m -Xmx1024m"
1038
			def gradleBatOpts = "$gradleOpts -XX:MaxHeapSize=256m"
P
Phillip Webb 已提交
1039
			File wrapperFile = file("gradlew")
1040 1041
			wrapperFile.text = wrapperFile.text.replace("DEFAULT_JVM_OPTS=",
				"GRADLE_OPTS=\"$gradleOpts \$GRADLE_OPTS\"\nDEFAULT_JVM_OPTS=")
P
Phillip Webb 已提交
1042
			File wrapperBatFile = file("gradlew.bat")
1043 1044 1045 1046
			wrapperBatFile.text = wrapperBatFile.text.replace("set DEFAULT_JVM_OPTS=",
				"set GRADLE_OPTS=$gradleBatOpts %GRADLE_OPTS%\nset DEFAULT_JVM_OPTS=")
		}
	}
1047

1048
}
1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060

/*
 * 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-")) {
1061
			return version.replace('BUILD', qualifier)
1062 1063
		}
	}
1064
	return version
1065
}