Skip to content

Instantly share code, notes, and snippets.

@ethankhall
Created November 8, 2013 13:08
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save ethankhall/7370807 to your computer and use it in GitHub Desktop.
Save ethankhall/7370807 to your computer and use it in GitHub Desktop.
Ivy to Gradle dependency converter
println("dependencies {")
def ivyModule = new XmlParser().parse(new File('ivy.xml'))
ivyModule.dependencies.dependency.each {
def scope = it.@conf?.contains("test") ? "testCompile" : "compile"
println("\t$scope '${it.@org}:${it.@name}:${it.@rev}'")
}
println("}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment