spring-security/build.gradle

186 lines
5.5 KiB
Groovy
Raw Normal View History

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")
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'
description = 'Spring Security'
allprojects {
2015-03-23 12:14:26 -04:00
apply plugin: 'idea'
apply plugin: 'eclipse'
2015-03-23 12:14:26 -04:00
ext.releaseBuild = version.endsWith('RELEASE')
ext.snapshotBuild = version.endsWith('SNAPSHOT')
2016-02-25 12:35:17 -05:00
ext.springVersion = '4.2.5.RELEASE'
2015-03-23 12:14:26 -04:00
ext.springLdapVersion = '2.0.2.RELEASE'
2015-03-23 12:14:26 -04:00
group = 'org.springframework.security'
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
}
2015-08-18 14:58:01 -04:00
eclipse.project.name = "${project.name}-4.1.x"
}
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
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
configure(allprojects - javaProjects) {
2015-03-23 12:14:26 -04:00
task afterEclipseImport {
ext.srcFile = file('.classpath')
inputs.file srcFile
outputs.dir srcFile
2015-03-23 12:14:26 -04:00
onlyIf { !srcFile.exists() }
2015-03-23 12:14:26 -04:00
doLast {
srcFile << """<?xml version="1.0" encoding="UTF-8"?>
<classpath>
2015-03-23 12:14:26 -04:00
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="output" path="bin"/>
</classpath>
"""
2015-03-23 12:14:26 -04: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
}
}
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"
2016-03-14 01:02:07 -04:00
if(!project.name.contains('gae')) {
apply from: "$rootDir/gradle/checkstyle.gradle"
}
2016-03-14 01:03:54 -04:00
apply from: "$rootDir/gradle/ide.gradle"
2015-03-23 12:14:26 -04:00
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'
ext.springIoVersion = project.hasProperty('platformVersion') ? platformVersion : '2.0.1.RELEASE'
2015-03-23 12:14:26 -04:00
configurations {
jacoco //Configuration Group used by Sonar to provide Code Coverage using JaCoCo
}
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-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' }
}
// Task for creating the distro zip
2010-08-03 21:04:40 -04:00
task dist(type: Zip) {
dependsOn { subprojects*.tasks*.matching { task -> task.name.endsWith('generatePom') } }
2015-03-23 12:14:26 -04:00
classifier = 'dist'
evaluationDependsOn(':docs')
evaluationDependsOn(':docs:manual')
def zipRootDir = "${project.name}-$version"
into(zipRootDir) {
from(rootDir) {
include '*.adoc'
include '*.txt'
2015-03-23 12:14:26 -04:00
}
into('docs') {
with(project(':docs').apiSpec)
with(project(':docs:manual').spec)
with(project(':docs:guides').spec)
}
project.coreModuleProjects*.tasks*.withType(AbstractArchiveTask).flatten().each{ archiveTask ->
if(archiveTask!=dist){
into("$zipRootDir/dist") {
from archiveTask.outputs.files
}
}
2015-03-23 12:14:26 -04:00
}
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
}
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
}