|
|
|
@ -60,6 +60,8 @@ project('manual') { |
|
|
|
task apidocs(type: Javadoc) { |
|
|
|
task apidocs(type: Javadoc) { |
|
|
|
destinationDir = new File(buildDir, 'apidocs') |
|
|
|
destinationDir = new File(buildDir, 'apidocs') |
|
|
|
title = "Spring Security $version API" |
|
|
|
title = "Spring Security $version API" |
|
|
|
|
|
|
|
logging.captureStandardError LogLevel.INFO |
|
|
|
|
|
|
|
logging.captureStandardOutput LogLevel.INFO |
|
|
|
|
|
|
|
|
|
|
|
source coreModuleProjects.collect { project -> |
|
|
|
source coreModuleProjects.collect { project -> |
|
|
|
project.sourceSets.main.allJava |
|
|
|
project.sourceSets.main.allJava |
|
|
|
@ -68,34 +70,34 @@ task apidocs(type: Javadoc) { |
|
|
|
classpath = files(coreModuleProjects.collect { project -> |
|
|
|
classpath = files(coreModuleProjects.collect { project -> |
|
|
|
project.sourceSets.main.compileClasspath |
|
|
|
project.sourceSets.main.compileClasspath |
|
|
|
}) |
|
|
|
}) |
|
|
|
} |
|
|
|
options { |
|
|
|
|
|
|
|
outputLevel = org.gradle.external.javadoc.JavadocOutputLevel.QUIET |
|
|
|
|
|
|
|
links = [ |
|
|
|
|
|
|
|
"http://static.springframework.org/spring/docs/3.2.x/javadoc-api", |
|
|
|
|
|
|
|
"http://static.springsource.org/spring-ldap/docs/1.3.x/apidocs/", |
|
|
|
|
|
|
|
"http://download.oracle.com/javase/6/docs/api/" |
|
|
|
|
|
|
|
] |
|
|
|
|
|
|
|
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*'], |
|
|
|
|
|
|
|
|
|
|
|
apidocs.options.outputLevel = org.gradle.external.javadoc.JavadocOutputLevel.QUIET |
|
|
|
] |
|
|
|
|
|
|
|
addStringOption('-quiet') |
|
|
|
apidocs.options.links = [ |
|
|
|
} |
|
|
|
"http://static.springframework.org/spring/docs/3.2.x/javadoc-api", |
|
|
|
} |
|
|
|
"http://static.springsource.org/spring-ldap/docs/1.3.x/apidocs/", |
|
|
|
|
|
|
|
"http://download.oracle.com/javase/6/docs/api/" |
|
|
|
|
|
|
|
] |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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*'], |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
] |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ext.apiSpec = copySpec { |
|
|
|
ext.apiSpec = copySpec { |
|
|
|
into('apidocs') { |
|
|
|
into('apidocs') { |
|
|
|
|