Rafael Torres
Rafael Torres
This was fast ! Only took 6 months =) ... I will rebase and resubmit
I do have Jcenter in my repositories list. This is my build.gradle ``` gradle buildscript { repositories { jcenter() maven { url 'http://oss.jfrog.org/artifactory/oss-snapshot-local' } } dependencies { classpath 'org.akhikhl.wuff:wuff-plugin:0.0.13-SNAPSHOT' }...
based on mcmill input. I realized that this issue was caused by repository order. Gradle is looking for resources in jcenter and jfrog before going to local maven repository. I've...
I "fixed" it by declaring the dependency again inside of my build.gradle: dependencies { runtime "${eclipseMavenGroup}:org.eclipse.equinox.p2.repository:+" runtime "${eclipseMavenGroup}:org.eclipse.equinox.p2.metadata.repository:+" }