Gradle忽略传递依赖

时间:2013-01-23 20:47:52

标签: gradle gradlefx

我正在尝试使用Flex库(SWC),它在POM中定义了一些依赖项。我希望Gradle会自动提供那些传递性的依赖性。但是,gradle dependencies仅显示已手动添加的一个依赖项。

merged
\--- com.example:flex-core:1.0.0

该库的POM文件包含以下内容:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.example</groupId>
  <artifactId>flex-core</artifactId>
  <version>1.0.0-SNAPSHOT</version>
  <packaging>swc</packaging>
  <dependencies>
    <dependency>
      <groupId>org.as3commons</groupId>
      <artifactId>as3commons-lang</artifactId>
      <version>0.3.6</version>
      <type>swc</type>
      <scope>external</scope>
    </dependency>
    <dependency>
      <groupId>org.as3commons</groupId>
      <artifactId>as3commons-collections</artifactId>
      <version>1.3.2</version>
      <type>swc</type>
      <scope>external</scope>
    </dependency>
    <dependency>
      <groupId>org.as3commons</groupId>
      <artifactId>as3commons-reflect</artifactId>
      <version>1.6.0</version>
      <type>swc</type>
      <scope>external</scope>
    </dependency>
  </dependencies>
</project>

我在build.gradle中添加了以下依赖项:

dependencies {
    merged 'com.example:flex-core:1.0.0@swc'
}

为什么Gradle会忽略POM的依赖关系?是因为“外部”范围? 是否可以在不手动添加依赖项的情况下获取这些依赖项?

1 个答案:

答案 0 :(得分:7)

在声明您的依赖项(@scw)时,您正在使用artifact only notation。这意味着Gradle将仅检索工件本身,但不使用POM中的传递依赖项。

请改为尝试:

dependencies {
    merged 'com.example:core:1.0.0'
}

名称不应该是flex-core吗?至少这就是POM所说的。