如何在Gradle中指定依赖关系组的属性?

时间:2012-05-11 15:13:29

标签: build gradle dependency-management

使用Gradle,我希望能够禁用一组依赖项的传递性,同时仍允许其他依赖项。像这样:

// transitivity enabled
compile(
  [group: 'log4j', name: 'log4j', version: '1.2.16'],
  [group: 'commons-beanutils', name: 'commons-beanutils', version: '1.7.0']
)

// transitivity disabled
compile(
  [group: 'commons-collections', name: 'commons-collections', version: '3.2.1'],
  [group: 'commons-lang', name: 'commons-lang', version: '2.6'],
) { 
  transitive = false
}

Gradle不接受此语法。如果我这样做,可以让它工作:

compile(group: 'commons-collections', name: 'commons-collections', version: '3.2.1') { transitive = false }
compile(group: 'commons-lang', name: 'commons-lang', version: '2.6']) { transitive = false }

但这需要我在每个依赖项上指定属性,而我宁愿将它们组合在一起。

有人建议使用可以解决此问题的语法吗?

2 个答案:

答案 0 :(得分:5)

首先,有一些方法可以简化(或至少缩短)您的声明。例如:

compile 'commons-collections:commons-collections:3.2.1@jar'
compile 'commons-lang:commons-lang:2.6@jar'

或者:

def nonTransitive = { transitive = false }

compile 'commons-collections:commons-collections:3.2.1', nonTransitive
compile 'commons-lang:commons-lang:2.6', nonTransitive

为了一次创建,配置和添加多个依赖项,您必须引入一些抽象。类似的东西:

def deps(String... notations, Closure config) { 
    def deps = notations.collect { project.dependencies.create(it) }
    project.configure(deps, config)
}

dependencies {
    compile deps('commons-collections:commons-collections:3.2.1', 
            'commons-lang:commons-lang:2.6') { 
        transitive = false
    }
}

答案 1 :(得分:3)

创建单独的配置,并在所需配置上具有transitive = false。 在依赖项中,只需将配置包含在编译或其所属的任何其他配置中

configurations {
    apache
    log {
        transitive = false
        visible = false //mark them private configuration if you need to
    }
}

dependencies {
    apache 'commons-collections:commons-collections:3.2.1'
    log 'log4j:log4j:1.2.16'

    compile configurations.apache
    compile configurations.log
}

以上允许我禁用日志相关资源的传递依赖项,而我已经为apache配置应用了默认的transitive = true。

按照tair的评论编辑下面:

会解决这个问题吗?

//just to show all configurations and setting transtivity to false
configurations.all.each { config->
    config.transitive = true
    println config.name + ' ' + config.transitive
}

然后跑 gradle依赖

查看依赖项。我正在使用Gradle-1.0,当使用传递性false和true时,就显示依赖性而言它表现良好。

我有一个活跃的项目,当使用上面的方法将transitive转换为true时,我有75个依赖项,当传递给false时我有64个。

值得做一个类似的检查并检查构建工件。