I'm building project using Gradle and legacy ivy repository where jars were built with a custom ivy status. Unfortunately it seems that Gradle has a problem with such statuses thus I'm getting error:
Unexpected status 'DEV' specified for *some_dependecy*:1.0.34. Expected one of: [integration, milestone, release]
Here is how that dependency is defined in build.gradle
compile 'dependency:some_dependecy:1.0.34'
and repository definition
ivy {
url 'http://local-repo/ivy-candidates-local/'
layout 'pattern' , {
artifact '[organisation]/[module]/[revision]/[type]s/[artifact].[ext]'
ivy '[organisation]/[module]/[revision]/ivys/ivy.xml'
m2compatible = true
}
which I think is fine since all other dependecies (without "custom" statuses) are being downloaded correctly
I couldn't find any information regarding such a problem. Is there a way to tell Gradle to look for custom 'DEV' status instead of the default ones?