https://github.com/breskeby/gradleplugins/tree/master/emmaPlugin
我无法使用当前文档使用gradle 1.7。
答案 0 :(得分:0)
apply from:'http://github.com/breskeby/gradleplugins/raw/master/emmaPlugin/emma.gradle'
没有用 - 必须下载并将其放在本地。所以:
apply from: 'emma.gradle'
作品: - )
答案 1 :(得分:0)
问题是给定的github.com链接重定向到raw.githubusercontent.com
试
apply from: 'https://raw.githubusercontent.com/breskeby/gradleplugins/master/emmaPlugin/emma.gradle'