How do I change the default conflict manager?

2012-04-02 Thread David Goblirsch
How can I change the default conflict manager from latest-revision to latest-compatible? I work at a site where we have 300+ ivy projects, and every time I put out a new 3rd party jar the builds all break unless I start at the bottom of the dependency hierarchy and rebuild everything. Updating

Re: Mail Task

2012-04-02 Thread Eric Fetzer
This turned out to be an issue with our mail server not allowing this machine to send external emails. Thanks! On Mar 29, 2012, at 6:01 AM, Eric Fetzer wrote: > Nope, all formed well. Could it be exchange server rules? > > > > On Mar 27, 2012, at 10:05 PM, Vimil Saju wrote: > >> I've s

Re: How to avoid long classpath issue in windows

2012-04-02 Thread Jarek Czekalski
W dniu 2012-04-02 12:21, vijayaratha vijayasingam pisze: Actually i want to know how can i correct my build.xml or what is the issue with it? Use unjar task to unpack the jars. pathing.jar contains the manifest file where the classpaths are defined ..But ANT couldn't load it with the pathid "

Re: How to avoid long classpath issue in windows

2012-04-02 Thread vijayaratha vijayasingam
Actually i want to know how can i correct my build.xml or what is the issue with it? pathing.jar contains the manifest file where the classpaths are defined ..But ANT couldn't load it with the pathid "javac.classpath".. Any issue with the script? Thanks -Ratha On 2 April 2012 15:47, Jarek Czekals

Re: How to avoid long classpath issue in windows

2012-04-02 Thread Jarek Czekalski
You could unpack part of the jars and use the directory containing classes as a classpath. Later you may put them into a single jar. For compilation it's safe. For distribution there may be licensing issues, depending on the libraries involved. Jarek W dniu 2012-04-02 11:47, vijayaratha vijay

Re: How to avoid long classpath issue in windows

2012-04-02 Thread vijayaratha vijayasingam
I corrected my build.xml as follows according the following doc http://ant.apache.org/manual/Tasks/jar.html Where I just introduced a new jar(pathing.jar) which mainly contains a manifest file where i define all classpaths..But still i get CNF issue.. Any idea how can i overcome this issue?