mirror of
				https://github.com/spring-projects/spring-security.git
				synced 2025-11-04 08:39:05 +00:00 
			
		
		
		
	
		
			
	
	
		
			19 lines
		
	
	
		
			666 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
		
		
			
		
	
	
			19 lines
		
	
	
		
			666 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
| 
								 | 
							
								// Tutorial sample build file
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								apply id: 'war'
							 | 
						||
| 
								 | 
							
								apply id: 'jetty'
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								dependencies {
							 | 
						||
| 
								 | 
							
								    providedCompile 'javax.servlet:servlet-api:2.5@jar'
							 | 
						||
| 
								 | 
							
								    compile project(':spring-security-core'),
							 | 
						||
| 
								 | 
							
								            "org.springframework:spring-core:$springVersion",
							 | 
						||
| 
								 | 
							
								            "org.springframework:spring-beans:$springVersion",
							 | 
						||
| 
								 | 
							
								            "org.springframework:spring-web:$springVersion",
							 | 
						||
| 
								 | 
							
								            "org.springframework:spring-webmvc:$springVersion",
							 | 
						||
| 
								 | 
							
								            "org.aspectj:aspectjrt:$aspectjVersion"
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    runtime project(':spring-security-web'),
							 | 
						||
| 
								 | 
							
								            project(':spring-security-config'),
							 | 
						||
| 
								 | 
							
								            project(':spring-security-taglibs'),
							 | 
						||
| 
								 | 
							
								            'log4j:log4j:1.2.15@jar'
							 | 
						||
| 
								 | 
							
								}
							 |