Thanks, I'm trying to setup a HTTP server now.

How do you add the ivy pattern in the new format?

e.g. converting this

add(new org.apache.ivy.plugins.resolver.FileSystemResolver()) {
           name = 'repo'
*           addIvyPattern
"F:/ivy-repo/[organisation]/[module]-ivy-[revision].xml"*
           addArtifactPattern
"F:/ivy-repo/[organisation]/[module]-[revision](-[classifier]).[ext]"
           descriptor = 'optional'
           checkmodified = true
       }


to this:

repositories {
   ivy {
       name = 'libs'
       userName = 'some-user'
       password = 'some-password'
       artifactPattern
'http://myrepo.com/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]'
   }
}




--
View this message in context: 
http://gradle.1045684.n5.nabble.com/Ivy-Repository-setup-with-FileSystemResolver-tp4761675p4774215.html
Sent from the gradle-user mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to