Re: Normalizing paths in files

2009-03-25 Thread jbmdharris
David Weintraub wrote: > > Try the "dirname" task. This is an interesting task... but I'm not sure how I would scale it to fixup 30 or so different relative paths sprinkled throughout 400 or so files. Simply extracting the URLs out so I can run them through the task to then go back and repla

Re: Running Ivy in parallel builds

2009-03-25 Thread Maarten Coene
Could you tell us what the problem is, e.g. do you get error messages, exceptions, ... ? Maarten - Original Message From: Uldis Karlovs-Karlovskis To: ivy-u...@ant.apache.org Sent: Friday, March 20, 2009 4:50:09 PM Subject: RE: Running Ivy in parallel builds The parallel artifacts

Re: Non-concurrent resolve hangs with artifact-lock enabled

2009-03-25 Thread Maarten Coene
Could you create a JIRA ticket for this and adding as much information as possible? (like your settings.xml, build.xml, ant output, etc) Maarten - Original Message From: "Brown, Carlton" To: ivy-u...@ant.apache.org Sent: Friday, March 20, 2009 1:07:34 PM Subject: RE: Non-concurrent

Re: [ivyde] WorkspaceResolver

2009-03-25 Thread Maarten Coene
Matt, there is an Eclipse updatesite containing a snapshot version of IvyDE/Ivy here: http://hudson.zones.apache.org/hudson/view/Ant/job/IvyDE-updatesite/lastSuccessfulBuild/artifact/trunk/build/ However, remember these are snapshots, so be very carefull when using these versions! regards, Maa

Re: missing ivy.jar file in http://apache.org/dist/ant/ivy/2.0.0/

2009-03-25 Thread Maarten Coene
I'm not sure uploading the jar file is the way to go... Perhaps the example on the install.html file should be modified to download the ivy.jar from the maven repository: http://repo2.maven.org/maven2/org/apache/ivy/ivy/2.0.0/ivy-2.0.0.jar Maarten - Original Message From: Vladimir

Re: Conflict managers - using revConstraints?

2009-03-25 Thread Maarten Coene
Steve, I don't know if it will solve your problem, but could you set your resolveMode to "dynamic"? This will tell Ivy to use the revConstraint attribute rather than the revision attribute. Maarten - Original Message From: Stephen Woods To: ivy-user Sent: Wednesday, March 25, 2

Re: Normalizing paths in files

2009-03-25 Thread Joe Schmetzer
There's no need to use a fake name like "FOO" that. The "location" attribute of the property task does exactly what is needed. For example: http://ant.apache.org/manual/CoreTasks/property.html for details Cheers, Joe On Wed, 2009-03-25 at 15:41 -0400, David Weintraub wrote: > Try the "dirname"

Re: Normalizing paths in files

2009-03-25 Thread David Weintraub
Try the "dirname" task. This will normalize a file name, but it will also give it the full directory path and not the relative path: will print out: "/home/dweintraub/this/is/a/test.txt". Notice I appended "FOO" on the path, so would also include the file name too. On Wed, Mar 25, 2009 at

Re: [ivyde] WorkspaceResolver

2009-03-25 Thread Kirby Files
Nicolas Lalevée wrote on 03/25/2009 11:29 AM: The worksapce resolver implemented in the beta1 is a sort of workaround. The process implemented is to launch a normal resolve. Then if some of the resolved dependency is mathing the organization name and module name of some project in your Eclipse wo

Re: [ivyde] WorkspaceResolver

2009-03-25 Thread Matt Benson
--- On Wed, 3/25/09, Nicolas Lalevée wrote: > From: Nicolas Lalevée > Subject: Re: [ivyde] WorkspaceResolver > To: ivy-u...@ant.apache.org > Date: Wednesday, March 25, 2009, 10:29 AM > On mardi 24 mars 2009 20:17:11 Matt > Benson wrote: > > Nicolas (or anybody, but practically, Nicolas): > > >

Re: How do I run maven build from ant

2009-03-25 Thread eyalg1972
I was suspecting it, but Thanks!!! Joe Schmetzer wrote: > > The Maven tasks for Ant are limited to dependency management, artifact > deployment and POM processing. They currently do not handle invoking Maven > builds from Ant. I suspect the easiest solution for you is to just invoke > Maven di

Re: rereport, exclude dependencies

2009-03-25 Thread Sam Berlin
Are you able to share your ant task, Nascif? I managed to hack up a very custom XSL file [1] that includes only the organization I'm looking for, but it's a complete hack & it doesn't lend itself to other things I'd like to implement too. Sam [1] https://www.limewire.org/fisheye/browse/~raw,r=1

Re: [ivyde] WorkspaceResolver

2009-03-25 Thread Nicolas Lalevée
On mardi 24 mars 2009 20:17:11 Matt Benson wrote: > Nicolas (or anybody, but practically, Nicolas): > > I am trying to use the WorkspaceResolver in IvyDE 2.0.0beta1 to resolve > project dependencies in Eclipse where the dependency is not found any any > repo (yet, anyway). I have selected "Resol

Re: How do I run maven build from ant

2009-03-25 Thread Joe Schmetzer
The Maven tasks for Ant are limited to dependency management, artifact deployment and POM processing. They currently do not handle invoking Maven builds from Ant. I suspect the easiest solution for you is to just invoke Maven directly using an task. Regards, Joe On Wed, March 25, 2009 2:58 pm, e

Re: How do I run maven build from ant

2009-03-25 Thread eyalg1972
Thanks, I saw the ant-task issue, but I still did not understood how to use them to invoke from ant a maven build... Eyal mchenryc wrote: > > The maven team has created a set of Ant tasks to do some of the things > maven > does. I have not used it myself: > http://maven.apache.org/ant-tasks/in

Re: How do I run maven build from ant

2009-03-25 Thread Chad McHenry
The maven team has created a set of Ant tasks to do some of the things maven does. I have not used it myself: http://maven.apache.org/ant-tasks/index.html However, once upon a time I did use a set of macros that would invoke maven. It was part of the JavaGen Ant Modules, which are no longer mainta

AW: Xslt troubles

2009-03-25 Thread Knuplesch, Juergen
I run it inside Ant using the xslt task including the saxon9.jar and also the saxon.jar of my colleague (Version 6?) My colleague run it in his environment. But I found a solution: I changed to And now it works with saxon9. I dont know why Maybe saxon9 is xslt 2.0 and saxon 6 is x

Re: Xslt troubles

2009-03-25 Thread Stefan Krause
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 It looks to me more like a bug in the stylesheet than like an ant issue. Have you tried to run the stylesheet in a debugger or from the command line? Stefan Krause Knuplesch, Juergen schrieb: > Hello, > > I am using Saxon to run a special XSLT. > Th

RE: Dynamic macro dispatch.

2009-03-25 Thread Felix Dorner
Heya, > You can check out the various macroforeach tasks > around to get an idea of what you need to do. This hint lead me to AntExtra, which provides a task that accepts makro names. Thanks, Felix - To unsubscribe, e-mail:

Xslt troubles

2009-03-25 Thread Knuplesch, Juergen
Hello, I am using Saxon to run a special XSLT. This XSLT has run well using saxon9.jar. Now it had to be changed and now I get the following error: [xslt] Processing D:\Temp\xsltPRL\install.dsf to D:\Temp\xsltPRL\Ergebnis.html [xslt] Loading stylesheet D:\Entwicklung\Build\DopeBuildSe