mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-02-22 22:46:15 +00:00
Added generation of source archives and trial support for maven deployment and pom generation, with "provided" configuration mapped to "provided" scope.
21 lines
849 B
Groovy
21 lines
849 B
Groovy
// Web module build file
|
|
|
|
dependencies {
|
|
compile project(':spring-security-core'),
|
|
'aopalliance:aopalliance:1.0',
|
|
"org.aspectj:aspectjweaver:$aspectjVersion",
|
|
"org.springframework:spring-aop:$springVersion",
|
|
"org.springframework:spring-core:$springVersion",
|
|
"org.springframework:spring-beans:$springVersion",
|
|
"org.springframework:spring-context:$springVersion",
|
|
"org.springframework:spring-expression:$springVersion",
|
|
"org.springframework:spring-jdbc:$springVersion",
|
|
"org.springframework:spring-tx:$springVersion",
|
|
"org.springframework:spring-web:$springVersion",
|
|
"org.springframework:spring-test:$springVersion"
|
|
|
|
provided 'javax.servlet:servlet-api:2.5'
|
|
|
|
testCompile 'commons-codec:commons-codec:1.3'
|
|
}
|