2010-03-28 18:54:41 -04:00
|
|
|
apply plugin: 'base'
|
2010-01-19 23:14:48 -05:00
|
|
|
|
2009-12-04 16:33:17 -05:00
|
|
|
allprojects {
|
2011-02-10 15:18:40 -05:00
|
|
|
version = '3.1.0.CI-SNAPSHOT'
|
2010-01-17 21:02:28 -05:00
|
|
|
releaseBuild = version.endsWith('RELEASE')
|
2010-01-21 00:28:17 -05:00
|
|
|
snapshotBuild = version.endsWith('SNAPSHOT')
|
|
|
|
|
2010-01-12 19:44:05 -05:00
|
|
|
group = 'org.springframework.security'
|
|
|
|
|
2009-12-04 16:33:17 -05:00
|
|
|
repositories {
|
2011-01-10 12:27:22 -05:00
|
|
|
mavenLocal()
|
2009-12-04 16:33:17 -05:00
|
|
|
mavenCentral()
|
2010-03-03 10:40:57 -05:00
|
|
|
mavenRepo name: 'SpringSource Milestone Repo', urls: 'http://repository.springsource.com/maven/bundles/milestone'
|
|
|
|
mavenRepo name: 'SpringSource Maven Snapshot Repo', urls: 'http://maven.springframework.org/snapshot/'
|
|
|
|
mavenRepo name: 'SpringSource Enterprise Release', urls: 'http://repository.springsource.com/maven/bundles/release'
|
|
|
|
mavenRepo name: 'SpringSource Enterprise External', urls: 'http://repository.springsource.com/maven/bundles/external'
|
2009-12-04 16:33:17 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-04 16:35:57 -04:00
|
|
|
// Set up different subproject lists for individual configuration
|
2010-08-03 21:04:40 -04:00
|
|
|
javaProjects = subprojects.findAll { project -> project.name != 'docs' && project.name != 'faq' && project.name != 'manual' }
|
|
|
|
sampleProjects = subprojects.findAll { project -> project.name.startsWith('spring-security-samples') }
|
|
|
|
itestProjects = subprojects.findAll { project -> project.name.startsWith('itest') }
|
|
|
|
coreModuleProjects = javaProjects - sampleProjects - itestProjects
|
|
|
|
aspectjProjects = [project(':spring-security-aspects'), project(':spring-security-samples-aspectj')]
|
|
|
|
|
|
|
|
configure(javaProjects) {
|
|
|
|
apply from: "$rootDir/gradle/javaprojects.gradle"
|
|
|
|
}
|
|
|
|
|
|
|
|
configure(coreModuleProjects) {
|
|
|
|
// Gives better names in structure101 jar diagram
|
|
|
|
sourceSets.main.classesDir = new File(buildDir, "classes/" + project.name.substring("spring-security".length() + 1))
|
2011-02-16 10:57:22 -05:00
|
|
|
apply plugin: 'bundlor'
|
|
|
|
bundlor.expansions = bundlorProperties
|
|
|
|
apply from: "$rootDir/gradle/maven-deployment.gradle"
|
|
|
|
apply plugin: 'emma'
|
2010-08-03 21:04:40 -04:00
|
|
|
}
|
|
|
|
|
2010-08-24 13:27:44 -04:00
|
|
|
task coreBuild {
|
|
|
|
dependsOn coreModuleProjects*.tasks*.matching { task -> task.name == 'build' }
|
|
|
|
}
|
|
|
|
|
2010-08-03 21:04:40 -04:00
|
|
|
configure (aspectjProjects) {
|
2011-02-16 10:57:22 -05:00
|
|
|
apply plugin: 'aspectj'
|
2010-08-03 21:04:40 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
apply from: "$rootDir/gradle/dist.gradle"
|
|
|
|
|
2010-08-24 17:36:42 -04:00
|
|
|
apply plugin: 'idea'
|
|
|
|
|
2010-08-22 17:29:11 -04:00
|
|
|
configure(javaProjects) {
|
2010-08-02 22:01:53 -04:00
|
|
|
apply plugin: 'idea'
|
2010-08-18 09:11:06 -04:00
|
|
|
apply plugin: 'eclipse'
|
2010-08-21 09:15:54 -04:00
|
|
|
|
2010-07-06 18:52:11 -04:00
|
|
|
ideaModule {
|
2010-08-21 09:15:54 -04:00
|
|
|
downloadJavadoc=false
|
|
|
|
excludeDirs.add(buildDir)
|
2010-07-06 18:52:11 -04:00
|
|
|
gradleCacheVariable = 'GRADLE_CACHE'
|
2010-08-21 09:15:54 -04:00
|
|
|
outputDir = "$rootProject.projectDir/intellij/out" as File
|
|
|
|
testOutputDir = "$rootProject.projectDir/intellij/testOut" as File
|
2010-08-24 17:36:42 -04:00
|
|
|
whenConfigured { module ->
|
|
|
|
def allClasses = module.dependencies.findAll() { dep ->
|
|
|
|
if (dep instanceof org.gradle.plugins.idea.model.ModuleLibrary
|
|
|
|
&& dep.classes.find { path ->
|
|
|
|
path.url.matches('.*jcl-over-slf4j.*') ||
|
|
|
|
path.url.matches('.*servlet-api.*') ||
|
|
|
|
path.url.matches('.*jsp-api.*')
|
|
|
|
}) {
|
|
|
|
dep.scope = 'COMPILE'
|
|
|
|
dep.exported = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-07-06 18:52:11 -04:00
|
|
|
}
|
2010-07-07 17:40:17 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
ideaModule {
|
2010-08-21 09:15:54 -04:00
|
|
|
excludeDirs += file('.gradle')
|
|
|
|
excludeDirs += file('buildSrc/build')
|
|
|
|
excludeDirs += file('buildSrc/.gradle')
|
2010-07-07 17:40:17 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
ideaProject {
|
|
|
|
javaVersion = '1.6'
|
2010-08-24 17:36:42 -04:00
|
|
|
subprojects = [rootProject] + javaProjects
|
2010-08-02 22:01:53 -04:00
|
|
|
withXml { node ->
|
2010-08-21 09:15:54 -04:00
|
|
|
// Use git
|
|
|
|
def vcsConfig = node.component.find { it.'@name' == 'VcsDirectoryMappings' }
|
|
|
|
vcsConfig.mapping[0].'@vcs' = 'Git'
|
2010-08-02 22:01:53 -04:00
|
|
|
}
|
|
|
|
}
|
2010-08-04 16:35:57 -04:00
|
|
|
|
|
|
|
task wrapper(type: Wrapper) {
|
2011-03-06 13:31:33 -05:00
|
|
|
gradleVersion = '1.0-milestone-1'
|
2010-08-04 16:35:57 -04:00
|
|
|
}
|