spring-security/build.gradle

193 lines
5.7 KiB
Groovy
Raw Normal View History

2013-06-20 12:40:54 -04:00
buildscript {
2015-03-23 12:14:26 -04:00
repositories {
maven { url "https://repo.spring.io/plugins-release" }
maven { url "https://repo.spring.io/plugins-snapshot" }
2015-03-23 12:14:26 -04:00
}
dependencies {
classpath("org.springframework.build.gradle:propdeps-plugin:0.0.7")
classpath("io.spring.gradle:spring-io-plugin:0.0.6.RELEASE")
classpath("com.bmuschko:gradle-tomcat-plugin:2.2.4")
2015-03-23 12:14:26 -04:00
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")
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.0.BUILD-SNAPSHOT")
2015-03-23 12:14:26 -04:00
}
2013-06-20 12:40:54 -04:00
}
2016-03-14 02:38:42 -04:00
plugins {
id "org.sonarqube" version "2.1-rc1"
2016-03-14 02:38:42 -04:00
}
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')
ext.springVersion = '4.3.5.RELEASE'
ext.springLdapVersion = '2.2.0.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
}
}
2016-03-14 02:38:42 -04:00
sonarqube {
properties {
2015-03-23 12:14:26 -04:00
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-xml-aspectj'), project(':spring-security-samples-javaconfig-aspectj')]
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-javaconfig-messages') - project(':spring-security-bom')) {
2015-03-23 12:14:26 -04:00
tasks.findByPath("artifactoryPublish")?.enabled = false
2016-03-14 02:38:42 -04:00
sonarqube {
2015-03-23 12:14:26 -04:00
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"
ext.BOOT_SAMPLE_GRADLE = "$rootDir/gradle/boot-sample.gradle"
2015-03-23 12:14:26 -04:00
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'
2017-03-21 15:39:46 -04:00
ext.springIoVersion = project.hasProperty('platformVersion') ? platformVersion : 'Brussels-SR1'
2015-03-23 12:14:26 -04:00
configurations {
jacoco //Configuration Group used by Sonar to provide Code Coverage using JaCoCo
}
dependencyManagement {
springIoTestRuntime {
imports {
2017-01-09 16:30:50 -05:00
mavenBom("io.spring.platform:platform-bom:${springIoVersion}") {
bomProperties([
'mockito.version': '1.10.19'
])
}
}
}
}
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
}