Hey all
i need help using IVY as dependencies manager
my application need to load plug-ins at RUN-TIME
means while the core application is running ,user can request for a new plug-in
and install them ,
i wish to manage all installed plug-ins using the core application DB.
i want to get a pom from my plug-ins server (or some othe...
In my ivy.xml file I have dependency statements like:
<dependency conf="*->*" org="gnu" name="gcc" rev="4.2.1" changing="false">
<artifact name="gcc" ext="tbz2" e:classifier="src"/>
</dependency>
'rev=' can be a fixed value or 'latest' or whatever.
In my build file I would like to get hold of the value of 'rev' to be uses in furt...
Looking for guidance as to what version of Spring, Hibernate and JBoss work together. I am currently using:
<dependencies>
<dependency org="javax.servlet" name="jstl" rev="1.1.2" conf="runtime->default"/>
<dependency org="org.springframework" name="spring" rev="2.5.6" conf="runtime->default"/>
<dependency org="org.springfra...
I'm looking at using ivysvn to help us use a local ivy repository in our svn repository.
I found this tutorial which I found easy to follow, and almost works, except for 3 points:
The tutorial has a blank username and password. How can I get this to work with our SVN repository (which does not allow anonymous commits) without having t...
In a grails project I have added a custom ivy resolver per the reference docs, http://www.grails.org/doc/latest/guide/single.html#12.2%20Plugin%20Repositories .
However, this resolver requires jsch and and some other jars. How can I put them on the project's build classpath so that ivy will use them?
This is my BuildConfig.groovy
gra...