mirror of
				https://github.com/spring-projects/spring-security.git
				synced 2025-10-31 06:38:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			813 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			813 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
| apply plugin: 'groovy'
 | |
| 
 | |
| dependencies {
 | |
|     compile project(':spring-security-core'),
 | |
|             springCoreDependency,
 | |
|             'aopalliance:aopalliance:1.0',
 | |
|             "org.springframework:spring-beans:$springVersion",
 | |
|             "org.springframework:spring-context:$springVersion",
 | |
|             "org.springframework:spring-expression:$springVersion",
 | |
|             "org.springframework:spring-messaging:$springVersion"
 | |
| 
 | |
|     testCompile project(':spring-security-core').sourceSets.test.output,
 | |
|                 "commons-codec:commons-codec:$commonsCodecVersion",
 | |
|                 "org.slf4j:jcl-over-slf4j:$slf4jVersion",
 | |
|                 "org.codehaus.groovy:groovy-all:$groovyVersion",
 | |
|                 powerMockDependencies,
 | |
|                 spockDependencies
 | |
| 
 | |
|     testRuntime "org.hsqldb:hsqldb:$hsqlVersion"
 | |
| } |