2017-03-29 04:45:30 +08:00
|
|
|
apply plugin: 'io.spring.convention.spring-sample-war'
|
2019-08-05 08:21:03 +08:00
|
|
|
apply plugin: 'io.freefair.aspectj.post-compile-weaving'
|
2017-03-29 04:45:30 +08:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile project(':spring-security-core')
|
|
|
|
|
2019-08-05 08:21:03 +08:00
|
|
|
aspect project(':spring-security-aspects')
|
2017-03-29 04:45:30 +08:00
|
|
|
|
|
|
|
runtime project(':spring-security-aspects')
|
|
|
|
runtime project(':spring-security-config')
|
|
|
|
}
|
2019-08-13 03:19:50 +08:00
|
|
|
|
|
|
|
aspectj {
|
|
|
|
version = aspectjVersion
|
|
|
|
}
|
|
|
|
|