| 
									
										
										
										
											2013-06-20 11:40:54 -05:00
										 |  |  | buildscript { | 
					
						
							| 
									
										
										
										
											2015-03-23 11:14:26 -05:00
										 |  |  | 	dependencies { | 
					
						
							| 
									
										
										
										
											2018-11-30 10:54:46 -06:00
										 |  |  | 		classpath 'io.spring.gradle:spring-build-conventions:0.0.23.BUILD-SNAPSHOT' | 
					
						
							| 
									
										
										
										
											2017-03-28 15:45:30 -05:00
										 |  |  | 		classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion" | 
					
						
							| 
									
										
										
										
											2015-03-23 11:14:26 -05:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	repositories { | 
					
						
							| 
									
										
										
										
											2017-06-08 16:59:01 -05:00
										 |  |  | 		maven { url 'https://repo.spring.io/plugins-snapshot' } | 
					
						
							| 
									
										
										
										
											2018-10-15 17:05:40 -06:00
										 |  |  | 		maven { url 'https://plugins.gradle.org/m2/' } | 
					
						
							| 
									
										
										
										
											2015-03-23 11:14:26 -05:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-08-24 18:27:44 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-28 15:45:30 -05:00
										 |  |  | apply plugin: 'io.spring.convention.root' | 
					
						
							| 
									
										
										
										
											2010-08-24 18:27:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-28 15:45:30 -05:00
										 |  |  | group = 'org.springframework.security' | 
					
						
							|  |  |  | description = 'Spring Security' | 
					
						
							| 
									
										
										
										
											2010-07-07 22:40:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-28 15:45:30 -05:00
										 |  |  | ext.snapshotBuild = version.contains("SNAPSHOT") | 
					
						
							|  |  |  | ext.releaseBuild = version.contains("SNAPSHOT") | 
					
						
							|  |  |  | ext.milestoneBuild = !(snapshotBuild || releaseBuild) | 
					
						
							| 
									
										
										
										
											2017-05-08 11:56:26 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | dependencyManagementExport.projects = subprojects.findAll { !it.name.contains('-boot') } | 
					
						
							| 
									
										
										
										
											2018-02-01 11:56:23 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-26 20:01:40 -05:00
										 |  |  | subprojects { | 
					
						
							|  |  |  | 	plugins.withType(JavaPlugin) { | 
					
						
							|  |  |  | 		project.sourceCompatibility='1.8' | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |