-
Notifications
You must be signed in to change notification settings - Fork 30
Ivy XML Provider
Jon Schneider edited this page Apr 28, 2015
·
2 revisions
The Ivy XML provider sources versions from the dependencies section of an Ivy module descriptor.
As noted in the file-based providers documentation, Ivy XML providers can be loaded from local files, URIs, URLs, dependency artifacts, and the plain InputStream
.
apply plugin: 'java'
apply plugin: 'nebula-dependency-recommender'
repositories { ivy { ... } }
dependencyRecommendations {
ivyXml module: 'sample:sample:1.0'
}
dependencies {
compile 'commons-logging:commons-logging'
compile 'commons-configuration:commons-configuration'
}