Question

https://github.com/breskeby/gradleplugins/tree/master/emmaPlugin

I can't get it to work with gradle 1.7 with the current documentation.

Was it helpful?

Solution

Ugh finally:

apply from:'http://github.com/breskeby/gradleplugins/raw/master/emmaPlugin/emma.gradle'

Didn't work - had to download it and put it locally. So:

apply from: 'emma.gradle'

Works :-)

OTHER TIPS

The problem is that the given github.com link redirects to raw.githubusercontent.com

try

apply from: 'https://raw.githubusercontent.com/breskeby/gradleplugins/master/emmaPlugin/emma.gradle'

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top