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"

September 29, 2012 4:05 AM
Sorry about that, it seems that 'artifactory-base-parent' and 'artifactory-parent' aren't being deployed for quite a while; I'll create an issue to make sure subsequent releases are properly distributed.
In the meantime I've deployed them both, so it should be OK now.
Thanks for bringing this to our attention.

--Noam


------------------------------------------------------------------------------
How fast is your code?
3 out of 4 devs don\\\'t know how their code performs in production.
Find out how slow your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219672;13503038;z?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
_______________________________________________
Artifactory-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/artifactory-users
September 28, 2012 3:54 PM
Trying to use the following config in gradle (for some user plugin unit
testing):

maven { url 'http://repo.jfrog.org/artifactory/libs-releases-local/' }
compile "org.artifactory:artifactory-papi:2.6.4"
compile "org.jfrog.buildinfo:build-info-api:2.0.13"

Required by:
:groovy:unspecified
> Could not find group:org.artifactory, module:artifactory-base-parent,
version:2.6.4.

And it does look like the artifactory-papi pom's parent pom
(artifactory-base-parent) is missing from this repo.



--
View this message in context: http://forums.jfrog.org/loading-artifactory-papi-and-build-info-api-from-repo-jfrog-org-tp7578279.html
Sent from the Artifactory - Users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
How fast is your code?
3 out of 4 devs don\\\'t know how their code performs in production.
Find out how slow your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219672;13503038;z?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
_______________________________________________
Artifactory-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/artifactory-users


------------------------------------------------------------------------------
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

Reply via email to