2013-06-20 12:40:54 -04:00
|
|
|
import groovy.text.SimpleTemplateEngine
|
|
|
|
|
|
|
|
buildscript {
|
2015-03-23 12:14:26 -04:00
|
|
|
repositories {
|
|
|
|
maven { url "https://repo.spring.io/plugins-release" }
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath("org.springframework.build.gradle:propdeps-plugin:0.0.7")
|
2015-07-08 06:39:09 -04:00
|
|
|
classpath("io.spring.gradle:spring-io-plugin:0.0.4.RELEASE")
|
2015-03-23 12:14:26 -04:00
|
|
|
classpath("org.gradle.api.plugins:gradle-tomcat-plugin:1.2.5")
|
|
|
|
classpath('me.champeau.gradle:gradle-javadoc-hotfix-plugin:0.1')
|
|
|
|
classpath('org.asciidoctor:asciidoctor-gradle-plugin:1.5.1')
|
2015-04-07 10:17:48 -04:00
|
|
|
classpath("io.spring.gradle:docbook-reference-plugin:0.3.1")
|
2015-03-23 12:14:26 -04:00
|
|
|
}
|
2013-06-20 12:40:54 -04:00
|
|
|
}
|
|
|
|
|
2013-07-15 12:00:01 -04:00
|
|
|
apply plugin: 'sonar-runner'
|
2010-03-28 18:54:41 -04:00
|
|
|
apply plugin: 'base'
|
2010-01-19 23:14:48 -05:00
|
|
|
|
2011-04-21 06:57:18 -04:00
|
|
|
description = 'Spring Security'
|
|
|
|
|
2009-12-04 16:33:17 -05:00
|
|
|
allprojects {
|
2015-03-23 12:14:26 -04:00
|
|
|
apply plugin: 'idea'
|
|
|
|
apply plugin: 'eclipse'
|
2013-08-08 17:29:43 -04:00
|
|
|
|
2015-03-23 12:14:26 -04:00
|
|
|
ext.releaseBuild = version.endsWith('RELEASE')
|
|
|
|
ext.snapshotBuild = version.endsWith('SNAPSHOT')
|
2015-09-01 10:51:54 -04:00
|
|
|
ext.springVersion = '4.2.1.RELEASE'
|
2015-03-23 12:14:26 -04:00
|
|
|
ext.springLdapVersion = '2.0.2.RELEASE'
|
2010-01-21 00:28:17 -05:00
|
|
|
|
2015-03-23 12:14:26 -04:00
|
|
|
group = 'org.springframework.security'
|
2010-01-12 19:44:05 -05:00
|
|
|
|
2015-03-23 12:14:26 -04:00
|
|
|
repositories {
|
2015-03-25 16:18:59 -04:00
|
|
|
mavenCentral()
|
|
|
|
maven { url "https://repo.spring.io/libs-snapshot" }
|
|
|
|
maven { url "https://repo.spring.io/plugins-release" }
|
|
|
|
maven { url "http://repo.terracotta.org/maven2/" }
|
2015-03-23 12:14:26 -04:00
|
|
|
}
|
2013-08-08 17:29:43 -04:00
|
|
|
|
2015-08-18 14:58:01 -04:00
|
|
|
eclipse.project.name = "${project.name}-4.1.x"
|
2009-12-04 16:33:17 -05:00
|
|
|
}
|
|
|
|
|
2013-07-15 12:00:01 -04:00
|
|
|
sonarRunner {
|
2015-03-23 12:14:26 -04:00
|
|
|
sonarProperties {
|
|
|
|
property "sonar.java.coveragePlugin", "jacoco"
|
|
|
|
property "sonar.projectName", "Spring Security"
|
|
|
|
property "sonar.jacoco.reportPath", "${buildDir.name}/jacoco.exec"
|
|
|
|
property "sonar.links.homepage", 'https://www.springsource.org/spring-security'
|
|
|
|
property "sonar.links.ci", 'https://build.springsource.org/browse/SEC-B32X'
|
|
|
|
property "sonar.links.issue", 'https://jira.springsource.org/browse/SEC'
|
|
|
|
property "sonar.links.scm", 'https://github.com/SpringSource/spring-security'
|
|
|
|
property "sonar.links.scm_dev", 'https://github.com/SpringSource/spring-security.git'
|
|
|
|
property "sonar.java.coveragePlugin", "jacoco"
|
|
|
|
}
|
2013-07-15 12:00:01 -04:00
|
|
|
}
|
|
|
|
|
2010-08-04 16:35:57 -04:00
|
|
|
// Set up different subproject lists for individual configuration
|
2013-12-09 16:51:49 -05:00
|
|
|
ext.javaProjects = subprojects.findAll { project -> project.name != 'docs' && project.name != 'manual' && project.name != 'guides' && project.name != 'spring-security-bom' }
|
2012-06-29 13:59:22 -04:00
|
|
|
ext.sampleProjects = subprojects.findAll { project -> project.name.startsWith('spring-security-samples') }
|
|
|
|
ext.itestProjects = subprojects.findAll { project -> project.name.startsWith('itest') }
|
|
|
|
ext.coreModuleProjects = javaProjects - sampleProjects - itestProjects
|
2014-07-25 17:03:18 -04:00
|
|
|
ext.aspectjProjects = [project(':spring-security-aspects'), project(':spring-security-samples-aspectj-xml'), project(':spring-security-samples-aspectj-jc')]
|
2010-08-03 21:04:40 -04:00
|
|
|
|
2013-08-05 11:37:37 -04:00
|
|
|
configure(allprojects - javaProjects) {
|
2015-03-23 12:14:26 -04:00
|
|
|
task afterEclipseImport {
|
|
|
|
ext.srcFile = file('.classpath')
|
|
|
|
inputs.file srcFile
|
|
|
|
outputs.dir srcFile
|
2013-08-05 11:37:37 -04:00
|
|
|
|
2015-03-23 12:14:26 -04:00
|
|
|
onlyIf { !srcFile.exists() }
|
2013-08-05 11:37:37 -04:00
|
|
|
|
2015-03-23 12:14:26 -04:00
|
|
|
doLast {
|
|
|
|
srcFile << """<?xml version="1.0" encoding="UTF-8"?>
|
2013-08-05 11:37:37 -04:00
|
|
|
<classpath>
|
2015-03-23 12:14:26 -04:00
|
|
|
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
|
|
|
|
<classpathentry kind="output" path="bin"/>
|
2013-08-05 11:37:37 -04:00
|
|
|
</classpath>
|
|
|
|
"""
|
2015-03-23 12:14:26 -04:00
|
|
|
}
|
|
|
|
}
|
2013-08-05 11:37:37 -04:00
|
|
|
}
|
|
|
|
|
2013-12-09 17:25:00 -05:00
|
|
|
configure(subprojects - coreModuleProjects - project(':spring-security-samples-messages-jc') - project(':spring-security-bom')) {
|
2015-03-23 12:14:26 -04:00
|
|
|
tasks.findByPath("artifactoryPublish")?.enabled = false
|
|
|
|
sonarRunner {
|
|
|
|
skipProject = true
|
|
|
|
}
|
2012-12-12 19:04:10 -05:00
|
|
|
}
|
|
|
|
|
2010-08-03 21:04:40 -04:00
|
|
|
configure(javaProjects) {
|
2015-03-23 12:14:26 -04:00
|
|
|
ext.TOMCAT_GRADLE = "$rootDir/gradle/tomcat.gradle"
|
|
|
|
ext.WAR_SAMPLE_GRADLE = "$rootDir/gradle/war-sample.gradle"
|
|
|
|
apply from: "$rootDir/gradle/javaprojects.gradle"
|
|
|
|
apply from: "$rootDir/gradle/release-checks.gradle"
|
|
|
|
apply from: "$rootDir/gradle/maven-deployment.gradle"
|
2010-08-03 21:04:40 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
configure(coreModuleProjects) {
|
2015-03-23 12:14:26 -04:00
|
|
|
apply plugin: 'emma'
|
|
|
|
apply plugin: 'spring-io'
|
|
|
|
|
2015-03-25 10:51:32 -04:00
|
|
|
ext.springIoVersion = project.hasProperty('platformVersion') ? platformVersion : 'latest.integration'
|
2015-03-23 12:14:26 -04:00
|
|
|
|
|
|
|
configurations {
|
|
|
|
jacoco //Configuration Group used by Sonar to provide Code Coverage using JaCoCo
|
|
|
|
}
|
|
|
|
|
2015-07-08 06:39:09 -04:00
|
|
|
dependencyManagement {
|
|
|
|
springIoTestRuntime {
|
|
|
|
imports {
|
|
|
|
mavenBom "io.spring.platform:platform-bom:${springIoVersion}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-03-23 12:14:26 -04:00
|
|
|
dependencies {
|
2015-08-03 10:45:42 -04:00
|
|
|
jacoco "org.jacoco:org.jacoco.agent:0.7.5.201505241946:runtime"
|
2015-03-23 12:14:26 -04:00
|
|
|
}
|
|
|
|
test {
|
|
|
|
jvmArgs "-javaagent:${configurations.jacoco.asPath}=destfile=${buildDir}/jacoco.exec,includes=${project.group}.*"
|
|
|
|
}
|
|
|
|
integrationTest {
|
|
|
|
jvmArgs "-javaagent:${configurations.jacoco.asPath}=destfile=${buildDir}/jacoco.exec,includes=${project.group}.*"
|
|
|
|
}
|
2010-08-24 13:27:44 -04:00
|
|
|
}
|
|
|
|
|
2010-08-03 21:04:40 -04:00
|
|
|
configure (aspectjProjects) {
|
2015-03-23 12:14:26 -04:00
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'aspectj'
|
2010-08-03 21:04:40 -04:00
|
|
|
}
|
|
|
|
|
2013-06-20 12:40:54 -04:00
|
|
|
task coreBuild {
|
2015-03-23 12:14:26 -04:00
|
|
|
dependsOn coreModuleProjects*.tasks*.matching { task -> task.name == 'build' }
|
2013-06-20 12:40:54 -04:00
|
|
|
}
|
|
|
|
|
2015-09-02 00:19:13 -04:00
|
|
|
task coreInstall {
|
|
|
|
dependsOn coreModuleProjects*.tasks*.matching { task -> task.name == 'install' }
|
|
|
|
}
|
|
|
|
|
2011-04-21 06:57:18 -04:00
|
|
|
// Task for creating the distro zip
|
2010-08-03 21:04:40 -04:00
|
|
|
|
2011-04-21 06:57:18 -04:00
|
|
|
task dist(type: Zip) {
|
2015-03-23 12:14:26 -04:00
|
|
|
dependsOn subprojects*.tasks*.matching { task -> task.name == 'assemble' || task.name.endsWith('Zip') || task.name.endsWith('generatePom') }
|
|
|
|
classifier = 'dist'
|
|
|
|
|
|
|
|
evaluationDependsOn(':docs')
|
|
|
|
evaluationDependsOn(':docs:manual')
|
|
|
|
|
|
|
|
def zipRootDir = "${project.name}-$version"
|
|
|
|
into(zipRootDir) {
|
|
|
|
from(rootDir) {
|
|
|
|
include '*.adoc'
|
|
|
|
}
|
|
|
|
into('docs') {
|
|
|
|
with(project(':docs').apiSpec)
|
|
|
|
with(project(':docs:manual').spec)
|
|
|
|
with(project(':docs:guides').spec)
|
|
|
|
}
|
|
|
|
into('dist') {
|
|
|
|
from coreModuleProjects.collect {project -> project.libsDir }
|
|
|
|
}
|
|
|
|
sampleProjects.each { project->
|
|
|
|
into("$zipRootDir/samples/$project.name") {
|
|
|
|
from(project.projectDir) {
|
|
|
|
include "src/main/**"
|
|
|
|
include "pom.xml"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-07-07 17:40:17 -04:00
|
|
|
}
|
|
|
|
|
2012-08-08 15:16:37 -04:00
|
|
|
artifacts {
|
2015-03-23 12:14:26 -04:00
|
|
|
archives dist
|
|
|
|
archives project(':docs').docsZip
|
|
|
|
archives project(':docs').schemaZip
|
2010-07-07 17:40:17 -04:00
|
|
|
}
|