* Move baseline from Spring 4.2.7.RELEASE to 4.2.8.RELEASE * Add CircleCI for building pull requests against baseline Spring, Spring4-next, and Spring5
470 lines
13 KiB
Groovy
470 lines
13 KiB
Groovy
buildscript {
|
|
repositories {
|
|
maven { url 'http://repo.springsource.org/plugins-release' }
|
|
}
|
|
dependencies {
|
|
classpath 'org.springframework.build.gradle:propdeps-plugin:0.0.7'
|
|
classpath 'io.spring.gradle:docbook-reference-plugin:0.3.1'
|
|
classpath 'io.spring.gradle:spring-io-plugin:0.0.4.RELEASE'
|
|
}
|
|
}
|
|
|
|
configure(allprojects) {
|
|
group = "org.springframework.ws"
|
|
|
|
ext.springVersion = "4.2.8.RELEASE"
|
|
ext.springSecurityVersion = "4.0.4.RELEASE"
|
|
ext.axiomVersion = "1.2.16"
|
|
ext.smackVersion = "4.1.6"
|
|
|
|
apply plugin: "java"
|
|
|
|
compileJava.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:fallthrough", "-Xlint:rawtypes", "-Xlint:deprecation",
|
|
"-Xlint:unchecked", "-Xlint:-options"
|
|
]
|
|
|
|
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:-fallthrough", "-Xlint:-rawtypes", "-Xlint:-deprecation",
|
|
"-Xlint:-unchecked", "-Xlint:-options"]
|
|
|
|
compileJava {
|
|
sourceCompatibility=1.7
|
|
targetCompatibility=1.7
|
|
}
|
|
|
|
sourceSets.test.resources.srcDirs = ['src/test/resources', 'src/test/java']
|
|
|
|
tasks.withType(Test).all {
|
|
systemProperty("java.awt.headless", "true")
|
|
systemProperty("testGroups", project.properties.get("testGroups"))
|
|
scanForTestClasses = false
|
|
include '**/*Test.*'
|
|
exclude '**/*Abstract*.*'
|
|
}
|
|
|
|
repositories {
|
|
maven { url 'https://repo.spring.io/libs-release' }
|
|
}
|
|
|
|
dependencies {
|
|
compile("commons-logging:commons-logging:1.1.3")
|
|
compile("org.springframework:spring-core:$springVersion")
|
|
|
|
testCompile("junit:junit:4.12")
|
|
testCompile("org.easymock:easymock:3.1")
|
|
testCompile("xmlunit:xmlunit:1.5")
|
|
testCompile("com.sun.mail:javax.mail:1.5.4")
|
|
testRuntime("org.codehaus.woodstox:woodstox-core-asl:4.2.0")
|
|
}
|
|
|
|
ext.javadocLinks = [
|
|
"http://docs.oracle.com/javase/7/docs/api/",
|
|
"http://docs.oracle.com/javaee/6/api/",
|
|
"http://docs.spring.io/spring/docs/current/javadoc-api/",
|
|
"https://hc.apache.org/httpcomponents-core-ga/httpcore/apidocs/",
|
|
"http://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/",
|
|
"http://fasterxml.github.com/jackson-core/javadoc/2.2.0/",
|
|
] as String[]
|
|
|
|
}
|
|
|
|
configure(subprojects) { subproject ->
|
|
|
|
apply plugin: "eclipse"
|
|
apply plugin: "maven"
|
|
apply plugin: "propdeps"
|
|
apply plugin: "propdeps-idea"
|
|
apply plugin: "propdeps-maven"
|
|
apply from: "${rootProject.projectDir}/publish-maven.gradle"
|
|
|
|
/**
|
|
* To run an alternate profile...
|
|
* ./gradlew -Pprofile=spring4-next clean build
|
|
* ./gradlew -Pprofile=spring5 clean build
|
|
*/
|
|
if (project.hasProperty('profile')) {
|
|
apply from: "${project.rootDir}/${profile}-profile.gradle"
|
|
println "+++ Configuring ${subproject.name} for Spring Framework ${springVersion}"
|
|
|
|
repositories {
|
|
maven { url "https://repo.spring.io/libs-snapshot" }
|
|
}
|
|
|
|
} else if (project.hasProperty('platformVersion')) {
|
|
apply plugin: 'spring-io'
|
|
|
|
repositories {
|
|
maven { url "https://repo.spring.io/libs-snapshot" }
|
|
}
|
|
|
|
dependencyManagement {
|
|
springIoTestRuntime {
|
|
imports {
|
|
mavenBom "io.spring.platform:platform-bom:${platformVersion}"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
jar {
|
|
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
|
|
|
|
from("${rootProject.projectDir}/src/dist") {
|
|
include "license.txt"
|
|
include "notice.txt"
|
|
into "META-INF"
|
|
expand(copyright: new Date().format("yyyy"), version: project.version)
|
|
}
|
|
}
|
|
|
|
javadoc {
|
|
description = "Generates project-level javadoc for use in -javadoc jar"
|
|
|
|
options.memberLevel = org.gradle.external.javadoc.JavadocMemberLevel.PROTECTED
|
|
options.author = true
|
|
options.header = project.name
|
|
options.links(project.ext.javadocLinks)
|
|
options.addStringOption('Xdoclint:none', '-quiet')
|
|
|
|
// 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
|
|
}
|
|
|
|
task sourcesJar(type: Jar, dependsOn:classes) {
|
|
classifier = "sources"
|
|
from sourceSets.main.allJava.srcDirs
|
|
include "**/*.java"
|
|
}
|
|
|
|
task javadocJar(type: Jar) {
|
|
classifier = "javadoc"
|
|
from javadoc
|
|
}
|
|
|
|
artifacts {
|
|
archives sourcesJar
|
|
archives javadocJar
|
|
}
|
|
}
|
|
|
|
project('spring-xml') {
|
|
description = "Spring XML"
|
|
|
|
dependencies {
|
|
// Spring
|
|
compile("org.springframework:spring-beans:$springVersion")
|
|
compile("org.springframework:spring-context:$springVersion")
|
|
|
|
//XML
|
|
optional("org.apache.ws.xmlschema:xmlschema-core:2.1.0")
|
|
optional("jaxen:jaxen:1.1.4")
|
|
}
|
|
}
|
|
|
|
project('spring-ws-core') {
|
|
description = 'Spring WS Core'
|
|
dependencies {
|
|
compile project(":spring-xml")
|
|
|
|
// Spring
|
|
compile("org.springframework:spring-aop:$springVersion")
|
|
compile("org.springframework:spring-beans:$springVersion")
|
|
compile("org.springframework:spring-oxm:$springVersion")
|
|
compile("org.springframework:spring-web:$springVersion")
|
|
compile("org.springframework:spring-webmvc:$springVersion")
|
|
testCompile("org.springframework:spring-test:$springVersion")
|
|
|
|
// XML
|
|
optional("org.jdom:jdom2:2.0.5")
|
|
optional("dom4j:dom4j:1.6.1")
|
|
optional("xom:xom:1.2.5") {
|
|
exclude group: 'xml-apis', module: 'xml-apis'
|
|
exclude group: 'xerces', module: 'xercesImpl'
|
|
exclude group: 'xalan', module: 'xalan'
|
|
}
|
|
optional("org.apache.ws.xmlschema:xmlschema-core:2.1.0")
|
|
|
|
// SOAP
|
|
optional("org.apache.ws.commons.axiom:axiom-api:$axiomVersion")
|
|
optional("org.apache.ws.commons.axiom:axiom-impl:$axiomVersion") {
|
|
exclude group: 'org.codehaus.woodstox', module: 'wstx-asl'
|
|
}
|
|
|
|
// WSDL
|
|
optional("wsdl4j:wsdl4j:1.6.1")
|
|
|
|
// Transport
|
|
provided("javax.servlet:javax.servlet-api:3.0.1")
|
|
optional("org.apache.httpcomponents:httpclient:4.3.4")
|
|
optional("commons-httpclient:commons-httpclient:3.1")
|
|
testCompile("org.mortbay.jetty:jetty:6.1.26")
|
|
|
|
testCompile("log4j:log4j:1.2.16")
|
|
testCompile("org.aspectj:aspectjrt:1.6.9")
|
|
testRuntime("org.aspectj:aspectjweaver:1.6.9")
|
|
}
|
|
}
|
|
|
|
project('spring-ws-support') {
|
|
description = 'Spring WS Support'
|
|
dependencies {
|
|
compile project(":spring-xml")
|
|
compile project(":spring-ws-core")
|
|
|
|
// Spring
|
|
compile("org.springframework:spring-beans:$springVersion")
|
|
compile("org.springframework:spring-jms:$springVersion")
|
|
testCompile("org.springframework:spring-test:$springVersion")
|
|
|
|
// Transport
|
|
provided("javax.jms:jms-api:1.1-rev-1")
|
|
provided("javax.mail:javax.mail-api:1.4.7")
|
|
provided("com.sun.mail:javax.mail:1.4.7")
|
|
optional("org.igniterealtime.smack:smack-tcp:$smackVersion")
|
|
optional("org.igniterealtime.smack:smack-java7:$smackVersion")
|
|
optional("org.igniterealtime.smack:smack-extensions:$smackVersion")
|
|
testCompile("commons-httpclient:commons-httpclient:3.1")
|
|
testRuntime("org.apache.activemq:activemq-core:4.1.2") {
|
|
exclude group:'org.apache.geronimo.specs', module:'geronimo-jms_1.1_spec'
|
|
}
|
|
testCompile("org.jvnet.mock-javamail:mock-javamail:1.6") {
|
|
exclude group:'javax.mail', module:'mail'
|
|
}
|
|
}
|
|
}
|
|
|
|
project('spring-ws-security') {
|
|
description = 'Spring WS Security'
|
|
dependencies {
|
|
compile project(":spring-xml")
|
|
compile project(":spring-ws-core")
|
|
|
|
// Spring
|
|
compile("org.springframework:spring-beans:$springVersion")
|
|
compile("org.springframework:spring-tx:$springVersion")
|
|
testCompile("org.springframework:spring-test:$springVersion")
|
|
|
|
// Spring Security
|
|
compile("org.springframework.security:spring-security-core:$springSecurityVersion")
|
|
optional("net.sf.ehcache:ehcache:2.8.4")
|
|
|
|
// WS-Security
|
|
optional("com.sun.xml.wss:xws-security:3.0") {
|
|
exclude group: 'javax.xml.crypto', module: 'xmldsig'
|
|
}
|
|
|
|
compile("org.apache.ws.security:wss4j:1.6.19")
|
|
compile("org.apache.wss4j:wss4j-ws-security-dom:2.1.4")
|
|
|
|
// SOAP
|
|
provided("com.sun.xml.messaging.saaj:saaj-impl:1.3.19") // required for XWSS
|
|
optional("org.apache.ws.commons.axiom:axiom-api:$axiomVersion")
|
|
optional("org.apache.ws.commons.axiom:axiom-impl:$axiomVersion") {
|
|
exclude group: 'org.codehaus.woodstox', module: 'wstx-asl'
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
project('spring-ws-test') {
|
|
description = 'Spring WS Test'
|
|
|
|
dependencies {
|
|
compile project(":spring-xml")
|
|
compile project(":spring-ws-core")
|
|
|
|
// Spring
|
|
compile("org.springframework:spring-context:$springVersion")
|
|
|
|
|
|
compile("xmlunit:xmlunit:1.5")
|
|
testCompile("org.springframework:spring-test:$springVersion")
|
|
}
|
|
|
|
|
|
}
|
|
|
|
configure(rootProject) {
|
|
description = 'Spring Web Services'
|
|
|
|
apply plugin: 'docbook-reference'
|
|
|
|
reference {
|
|
sourceDir = file('src/reference/docbook')
|
|
pdfFilename = 'spring-ws-reference.pdf'
|
|
}
|
|
|
|
// don't publish the default jar for the root project
|
|
configurations.archives.artifacts.clear()
|
|
|
|
task api(type: Javadoc) {
|
|
group = 'Documentation'
|
|
description = 'Generates aggregated Javadoc API documentation.'
|
|
title = "${rootProject.description} ${version} API"
|
|
|
|
dependsOn {
|
|
subprojects.collect {
|
|
it.tasks.getByName("jar")
|
|
}
|
|
}
|
|
|
|
options.memberLevel = org.gradle.external.javadoc.JavadocMemberLevel.PROTECTED
|
|
options.author = true
|
|
options.header = rootProject.description
|
|
options.overview = 'src/api/overview.html'
|
|
options.stylesheetFile = file("src/api/stylesheet.css")
|
|
options.splitIndex = true
|
|
options.links(project.ext.javadocLinks)
|
|
options.addStringOption('Xdoclint:none', '-quiet')
|
|
|
|
source subprojects.collect { project ->
|
|
project.sourceSets.main.allJava
|
|
}
|
|
destinationDir = new File(buildDir, "api")
|
|
classpath = files(subprojects.collect { project ->
|
|
project.sourceSets.main.compileClasspath
|
|
})
|
|
maxMemory = '1024m'
|
|
}
|
|
|
|
task docsZip(type: Zip) {
|
|
group = 'Distribution'
|
|
baseName = 'spring-ws'
|
|
classifier = 'docs'
|
|
description = "Builds -${classifier} archive containing api and reference " +
|
|
"for deployment at http://static.springframework.org/spring-framework/docs."
|
|
|
|
from('src/dist') {
|
|
include 'changelog.txt'
|
|
}
|
|
|
|
from (api) {
|
|
into 'api'
|
|
}
|
|
|
|
from (reference) {
|
|
into 'reference'
|
|
}
|
|
}
|
|
|
|
task schemaZip(type: Zip) {
|
|
group = 'Distribution'
|
|
baseName = 'spring-ws'
|
|
classifier = 'schema'
|
|
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 {
|
|
it.path.endsWith('META-INF/spring.schemas')
|
|
}?.withInputStream { schemas.load(it) }
|
|
|
|
for (def key : schemas.keySet()) {
|
|
def shortName = key.replaceAll(/http.*schema\/(.*)\/.*/, '$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]) {
|
|
group = 'Distribution'
|
|
baseName = 'spring-ws'
|
|
classifier = 'dist'
|
|
description = "Builds -${classifier} archive, containing all jars and docs, " +
|
|
"suitable for community download page."
|
|
|
|
ext.baseDir = "${baseName}-${project.version}";
|
|
|
|
from('src/dist') {
|
|
include 'readme.txt'
|
|
include 'license.txt'
|
|
include 'notice.txt'
|
|
into "${baseDir}"
|
|
expand(copyright: new Date().format('yyyy'), version: project.version)
|
|
}
|
|
|
|
from(zipTree(docsZip.archivePath)) {
|
|
into "${baseDir}/docs"
|
|
}
|
|
|
|
from(zipTree(schemaZip.archivePath)) {
|
|
into "${baseDir}/schema"
|
|
}
|
|
|
|
subprojects.each { subproject ->
|
|
into ("${baseDir}/libs") {
|
|
from subproject.jar
|
|
if (subproject.tasks.findByPath('sourcesJar')) {
|
|
from subproject.sourcesJar
|
|
}
|
|
if (subproject.tasks.findByPath('javadocJar')) {
|
|
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 ->
|
|
group = 'Distribution'
|
|
baseName = 'spring-ws'
|
|
classifier = 'dist-with-deps'
|
|
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 ->
|
|
subproject.configurations.runtime.resolvedConfiguration.resolvedArtifacts.each { artifact ->
|
|
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) {
|
|
description = 'Generates gradlew[.bat] scripts'
|
|
gradleVersion = '2.8'
|
|
}
|
|
}
|