1

在我的 BuildConfig.groovy 我有

dependencies {

   compile 'org.package:abc:2.0.0'

}

abc 将 xyz 作为依赖项。如何排除 xyz?

我试过了

dependencies {

   compile 'org.package:abc:2.0.0' {
     exclude: 'xyz'
   }

}

但这不起作用。

4

1 回答 1

4

它是排除,而不是排除...

 compile('org.package:abc:2.0.0') {
     excludes 'xyz'
  }
于 2013-08-26T19:09:32.573 回答