blob: d6f2c812375f95963a6c9cd8a08e7762ef065917 [file] [log] [blame]
configurations {
origin
}
dependencies {
origin group: 'org.springframework', name: 'spring-aop', version: "${springframeworkVersion}"
sourceBundle fileTree("$buildDir/libs")
}
task removeAopallianceFromJar(type: Jar) {
baseName = 'spring-aop'
from zipTree(configurations.origin[0])
exclude 'org/aopalliance/**'
}
bundlor.dependsOn removeAopallianceFromJar