spring-security/build.gradle

167 lines
5.6 KiB
Groovy
Raw Normal View History

2013-06-20 12:40:54 -04:00
import groovy.text.SimpleTemplateEngine
buildscript {
repositories {
maven { url "https://repo.spring.io/plugins-release" }
2013-06-20 12:40:54 -04:00
}
dependencies {
2014-12-08 14:18:45 -05:00
classpath("org.springframework.build.gradle:propdeps-plugin:0.0.7")
classpath("org.springframework.build.gradle:spring-io-plugin:0.0.3.RELEASE")
2014-12-10 11:07:32 -05:00
classpath("org.gradle.api.plugins:gradle-tomcat-plugin:1.2.5")
2013-09-11 18:30:50 -04:00
classpath('me.champeau.gradle:gradle-javadoc-hotfix-plugin:0.1')
2014-12-08 14:18:45 -05:00
classpath('org.asciidoctor:asciidoctor-gradle-plugin:1.5.1')
classpath("io.spring.gradle:docbook-reference-plugin:0.3.0")
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 {
apply plugin: 'idea'
apply plugin: 'eclipse'
2012-06-29 13:59:22 -04:00
ext.releaseBuild = version.endsWith('RELEASE')
ext.snapshotBuild = version.endsWith('SNAPSHOT')
2015-02-20 10:28:26 -05:00
ext.springVersion = '4.1.5.RELEASE'
2014-12-10 11:07:32 -05:00
ext.springLdapVersion = '2.0.2.RELEASE'
group = 'org.springframework.security'
repositories {
mavenCentral()
2014-01-30 10:44:58 -05:00
maven { url "https://repo.spring.io/libs-snapshot" }
maven { url "https://repo.spring.io/plugins-release" }
2013-08-27 09:47:04 -04:00
maven { url "http://repo.terracotta.org/maven2/" }
}
2014-02-19 12:05:27 -05:00
eclipse.project.name = "${project.name}-4.0.x"
}
2013-07-15 12:00:01 -04:00
sonarRunner {
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"
}
}
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) {
task afterEclipseImport {
ext.srcFile = file('.classpath')
inputs.file srcFile
outputs.dir srcFile
onlyIf { !srcFile.exists() }
doLast {
srcFile << """<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="output" path="bin"/>
</classpath>
"""
}
}
}
configure(subprojects - coreModuleProjects - project(':spring-security-samples-messages-jc') - project(':spring-security-bom')) {
tasks.findByPath("artifactoryPublish")?.enabled = false
2013-07-15 12:00:01 -04:00
sonarRunner {
skipProject = true
}
}
2010-08-03 21:04:40 -04:00
configure(javaProjects) {
2013-08-05 17:22:33 -04:00
ext.TOMCAT_GRADLE = "$rootDir/gradle/tomcat.gradle"
ext.WAR_SAMPLE_GRADLE = "$rootDir/gradle/war-sample.gradle"
2010-08-03 21:04:40 -04:00
apply from: "$rootDir/gradle/javaprojects.gradle"
2012-12-13 11:04:52 -05: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) {
apply plugin: 'emma'
apply plugin: 'spring-io'
ext.springIoVersion = project.hasProperty('platformVersion') ? platformVersion : '1.1.0.BUILD-SNAPSHOT'
2010-08-03 21:04:40 -04:00
2013-07-15 12:00:01 -04:00
configurations {
jacoco //Configuration Group used by Sonar to provide Code Coverage using JaCoCo
2013-08-27 09:47:04 -04:00
}
2013-07-15 12:00:01 -04:00
dependencies {
springIoVersions "io.spring.platform:platform-versions:${springIoVersion}@properties"
2013-07-15 12:00:01 -04:00
jacoco "org.jacoco:org.jacoco.agent:0.6.2.201302030002:runtime"
}
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) {
2013-06-20 12:40:54 -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 {
dependsOn coreModuleProjects*.tasks*.matching { task -> task.name == 'build' }
}
// 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 == 'assemble' || task.name.endsWith('Zip') || task.name.endsWith('generatePom') }
classifier = 'dist'
2010-08-24 17:36:42 -04:00
evaluationDependsOn(':docs')
evaluationDependsOn(':docs:manual')
def zipRootDir = "${project.name}-$version"
into(zipRootDir) {
from(rootDir) {
2015-03-10 15:40:39 -04:00
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
}
artifacts {
archives dist
archives project(':docs').docsZip
archives project(':docs').schemaZip
2010-07-07 17:40:17 -04:00
}