| Thanks Noam I was able to download artifactory-base-parent and artifactory-parent (thanks!) and they seem to load artifactory-log: > Could not find group:org.artifactory, module:artifactory-log, version:2.6.4. One trick that the gradle guys posted for situations where you need jars but you don't necessarily need to successfully resolve their pom dependency sections was to add the following repository resolver: add(new org.apache.ivy.plugins.resolver.URLResolver()) { name = "jarOnlyJFrog" // For non standard resolvers the name is required m2compatible = true // Tells Ivy to split the organization into subdirs. addArtifactPattern("http://repo2.jfrog.org/artifactory/libs-releases-local/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]") } So I'm actually able to do unit testing against the artifactory-papi and build-info-api modules now. However, if I just try to use the default maven resolver: maven { url 'http://repo.jfrog.org/artifactory/libs-releases-local/' } I still can't resolve everything I need for: compile "org.artifactory:artifactory-papi:2.6.4" compile "org.jfrog.buildinfo:build-info-api:2.0.13"
|
------------------------------------------------------------------------------ Don't let slow site performance ruin your business. Deploy New Relic APM Deploy New Relic app performance management and know exactly what is happening inside your Ruby, Python, PHP, Java, and .NET app Try New Relic at no cost today and get our sweet Data Nerd shirt too! http://p.sf.net/sfu/newrelic-dev2dev
_______________________________________________ Artifactory-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/artifactory-users


