gradle war:如何强制包含transitively提供的dep?

时间:2012-10-02 09:23:03

标签: gradle

拥有此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中排除特定的传递?

1 个答案:

答案 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
}