2011-02-01 16:54:18 +00:00
|
|
|
// Docbook and Javadoc building and uploading tasks
|
2010-08-22 22:42:54 +01:00
|
|
|
apply plugin: 'base'
|
2010-08-04 02:04:40 +01:00
|
|
|
|
2010-08-30 19:03:15 +01:00
|
|
|
task docs {
|
2013-10-03 21:28:55 -05:00
|
|
|
dependsOn 'manual:asciidoctor', 'apidocs', 'guides:asciidoctor'
|
2010-08-04 02:04:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
project('manual') {
|
2013-08-20 10:02:55 -05:00
|
|
|
apply plugin: 'base'
|
2013-10-03 14:15:09 -05:00
|
|
|
apply plugin: 'asciidoctor'
|
|
|
|
|
|
|
|
ext.expandPlaceholders = ""
|
|
|
|
|
|
|
|
asciidoctor {
|
|
|
|
options = [
|
|
|
|
eruby: 'erubis',
|
|
|
|
attributes: [
|
|
|
|
copycss : '',
|
|
|
|
icons : 'font',
|
|
|
|
'source-highlighter': 'prettify',
|
|
|
|
sectanchors : '',
|
|
|
|
toc2: '',
|
|
|
|
idprefix: '',
|
|
|
|
idseparator: '-',
|
|
|
|
doctype: 'book',
|
2013-10-23 17:45:46 -05:00
|
|
|
numbered: '',
|
2013-10-03 14:15:09 -05:00
|
|
|
'spring-security-version' : project.version,
|
2013-12-04 12:38:45 -06:00
|
|
|
'spring-version' : springVersion,
|
2013-10-03 14:15:09 -05:00
|
|
|
revnumber : project.version
|
|
|
|
]
|
|
|
|
]
|
|
|
|
}
|
2013-08-20 10:02:55 -05:00
|
|
|
|
2010-08-04 02:04:40 +01:00
|
|
|
|
2012-06-29 12:59:22 -05:00
|
|
|
ext.spec = copySpec {
|
2013-10-29 12:56:29 -05:00
|
|
|
into ('reference/htmlsingle') {
|
2013-10-30 16:56:00 -05:00
|
|
|
from(asciidoctor.outputDir)
|
|
|
|
exclude 'build', 'Guardfile'
|
2010-08-04 02:04:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task apidocs(type: Javadoc) {
|
|
|
|
destinationDir = new File(buildDir, 'apidocs')
|
|
|
|
title = "Spring Security $version API"
|
|
|
|
|
|
|
|
source coreModuleProjects.collect { project ->
|
|
|
|
project.sourceSets.main.allJava
|
|
|
|
}
|
|
|
|
|
|
|
|
classpath = files(coreModuleProjects.collect { project ->
|
|
|
|
project.sourceSets.main.compileClasspath
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2011-02-08 16:13:12 +00:00
|
|
|
apidocs.options.outputLevel = org.gradle.external.javadoc.JavadocOutputLevel.QUIET
|
|
|
|
|
2011-02-08 16:43:34 +00:00
|
|
|
apidocs.options.links = [
|
2013-09-13 15:34:30 -07:00
|
|
|
"http://static.springframework.org/spring/docs/3.2.x/javadoc-api",
|
2011-02-08 16:43:34 +00:00
|
|
|
"http://static.springsource.org/spring-ldap/docs/1.3.x/apidocs/",
|
|
|
|
"http://download.oracle.com/javase/6/docs/api/"
|
|
|
|
]
|
|
|
|
|
2011-02-08 16:13:12 +00:00
|
|
|
apidocs.options.groups = [
|
|
|
|
'Spring Security Core':[
|
|
|
|
'org.springframework.security.core*',
|
|
|
|
'org.springframework.security.authentication*',
|
|
|
|
'org.springframework.security.access*',
|
|
|
|
'org.springframework.security.remoting*',
|
|
|
|
'org.springframework.security.provisioning*',
|
|
|
|
'org.springframework.security.util*'],
|
|
|
|
'Spring Security Web':['org.springframework.security.web*'],
|
|
|
|
'Spring Security LDAP':['org.springframework.security.ldap*'],
|
|
|
|
'Spring Security Crypto':['org.springframework.security.crypto*'],
|
|
|
|
'Spring Security OpenID':['org.springframework.security.openid*'],
|
|
|
|
'Spring Security CAS':['org.springframework.security.cas*'],
|
|
|
|
'Spring Security ACL':['org.springframework.security.acls*'],
|
|
|
|
'Spring Security Config':['org.springframework.security.config*'],
|
|
|
|
'Spring Security Taglibs':['org.springframework.security.taglibs*'],
|
|
|
|
|
|
|
|
]
|
|
|
|
|
2012-06-29 12:59:22 -05:00
|
|
|
ext.apiSpec = copySpec {
|
2010-08-04 02:04:40 +01:00
|
|
|
into('apidocs') {
|
|
|
|
from(apidocs.destinationDir)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-03 14:15:09 -05:00
|
|
|
assemble.dependsOn = [apidocs, 'manual:asciidoctor']
|
2010-08-04 02:04:40 +01:00
|
|
|
|
2012-08-08 14:16:37 -05:00
|
|
|
task docsZip(type: Zip) {
|
|
|
|
dependsOn docs
|
2013-08-06 11:35:48 -05:00
|
|
|
evaluationDependsOn('guides')
|
2012-08-08 14:16:37 -05:00
|
|
|
group = 'Distribution'
|
|
|
|
baseName = rootProject.name
|
|
|
|
classifier = 'docs'
|
|
|
|
description = "Builds -${classifier} archive containing api and reference " +
|
|
|
|
"for deployment at static.springframework.org/spring-security/site/docs."
|
|
|
|
|
|
|
|
with(project(':docs').apiSpec)
|
|
|
|
with(project(':docs:manual').spec)
|
2013-08-06 11:35:48 -05:00
|
|
|
with(project(':docs:guides').spec)
|
2010-08-04 02:04:40 +01:00
|
|
|
}
|
|
|
|
|
2012-08-08 14:16:37 -05:00
|
|
|
task schemaZip(type: Zip) {
|
|
|
|
group = 'Distribution'
|
|
|
|
baseName = rootProject.name
|
|
|
|
classifier = 'schema'
|
|
|
|
description = "Builds -${classifier} archive containing all " +
|
|
|
|
"XSDs for deployment at static.springframework.org/schema."
|
|
|
|
|
|
|
|
coreModuleProjects.each { module ->
|
|
|
|
def Properties schemas = new Properties();
|
|
|
|
|
|
|
|
module.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.(.*).spring-.*/, '$1')
|
|
|
|
assert shortName != key
|
|
|
|
File xsdFile = module.sourceSets.main.resources.find {
|
|
|
|
it.path.endsWith(schemas.get(key))
|
|
|
|
}
|
|
|
|
assert xsdFile != null
|
|
|
|
into (shortName) {
|
|
|
|
from xsdFile.path
|
|
|
|
}
|
|
|
|
}
|
2010-08-04 02:04:40 +01:00
|
|
|
}
|
2010-08-22 22:42:54 +01:00
|
|
|
}
|