how to use space as pathSeparator in dependency:generate-resources?

2010-06-21 Thread Christophe Bliard
Hi, I am trying to export the classpath in a file as a space-separated list of jar by using the dependency:generate-resources plugin. Here is the pluging configuration plugin artifactIdmaven-dependency-plugin/artifactId executions execution phasegenerate-resources/phase

Re: how to use space as pathSeparator in dependency:generate-resources?

2010-06-21 Thread Anders Hammar
Have your tried the unicode char? \u0020 /Anders On Mon, Jun 21, 2010 at 12:36, Christophe Bliard cbli...@besancon.parkeon.com wrote: Hi, I am trying to export the classpath in a file as a space-separated list of jar by using the dependency:generate-resources plugin. Here is the pluging

Re: how to use space as pathSeparator in dependency:generate-resources?

2010-06-21 Thread Christophe Bliard
Thanks a lot! It works! I previously tried with #x0020; and got the same bad result, but with \u0020 it does exactly what I need. Christophe Bliard Le lundi 21 juin 2010 à 13:44 +0200, Anders Hammar a écrit : Have your tried the unicode char? \u0020 /Anders On Mon, Jun 21, 2010 at 12:36,