拥有此build.gradle
:
apply plugin: 'war'
repositories {
mavenCentral()
maven { url "http://repository.jboss.org/nexus/content/groups/public" }
}
configurations {
providedCompile {
exclude module: 'commons-httpclient' // here it doesn't work
}
}
dependencies {
compile 'commons-httpclient:commons-httpclient:3.1'
providedCompile ('org.jboss.resteasy:resteasy-jaxrs:2.3.3.Final') {
//exclude module: 'commons-httpclient' // here it works
}
}
我期待这场战争:
WEB-INF/
WEB-INF/lib/
WEB-INF/lib/commons-httpclient-3.1.jar
但只有这个:
WEB-INF/
如果我取消评论第二个exclude
并对第一个exclude
发表评论,则可以根据需要发挥作用。
如果这是预期的行为,我怎么能全局地从提供的libs中排除特定的传递?
答案 0 :(得分:5)
事实证明,这是“正确”的事情,因为compile
实际上从providedCompile
延伸:
apply plugin: 'war'
configurations.compile.extendsFrom.each {
println "$it"
}
所以,我的解决方案如下:
apply plugin: 'war'
repositories {
mavenCentral()
maven { url "http://repository.jboss.org/nexus/content/groups/public" }
}
configurations {
forceInclude {}
}
dependencies {
providedCompile 'org.jboss.resteasy:resteasy-jaxrs:2.3.3.Final'
forceInclude 'commons-httpclient:commons-httpclient:3.1'
}
war {
classpath += configurations.forceInclude
}