mirror of
				https://github.com/spring-projects/spring-security.git
				synced 2025-10-30 22:28:46 +00:00 
			
		
		
		
	This commit ensures that the jacoco plugin is applied when calling check and test tasks. Also remoed the clean task that prevented sonarqube using coverage data Fixes: gh-6199
		
			
				
	
	
		
			27 lines
		
	
	
		
			767 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			767 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
| buildscript {
 | |
| 	dependencies {
 | |
| 		classpath 'io.spring.gradle:spring-build-conventions:0.0.23.BUILD-SNAPSHOT'
 | |
| 		classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion"
 | |
| 	}
 | |
| 	repositories {
 | |
| 		maven { url 'https://repo.spring.io/plugins-snapshot' }
 | |
| 		maven { url 'https://plugins.gradle.org/m2/' }
 | |
| 	}
 | |
| }
 | |
| apply plugin: 'io.spring.convention.root'
 | |
| 
 | |
| group = 'org.springframework.security'
 | |
| description = 'Spring Security'
 | |
| 
 | |
| ext.snapshotBuild = version.contains("SNAPSHOT")
 | |
| ext.releaseBuild = version.contains("SNAPSHOT")
 | |
| ext.milestoneBuild = !(snapshotBuild || releaseBuild)
 | |
| 
 | |
| dependencyManagementExport.projects = subprojects.findAll { !it.name.contains('-boot') }
 | |
| 
 | |
| subprojects {
 | |
| 	plugins.withType(JavaPlugin) {
 | |
| 		project.sourceCompatibility='1.8'
 | |
| 	}
 | |
| }
 |