Search code examples
gradleemma

Is gradle's emmaPlugin still working?


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

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


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 :-)