Hi,

I am trying to create the following Manifest tag:

Custom-Classapth: libs/lib1.jar libs/lib2.jar

With the following configuration on Windows machine:

 <plugin>
 <artifactId>maven-dependency-plugin</artifactId>
 <version>2.1</version>
        <configuration>
          <outputFilterFile>true</outputFilterFile>
          <pathSeparator>\u0020</pathSeparator>
          <fileSeparator>/</fileSeparator>
          <prefix>libs</prefix>
          <outputFile>classpath.properties</outputFile>
        </configuration>
</plugin>

I get: libs/lib1.jar/u0020libs/lib2.jar

And this leads to wrong classpath tag inside Manifest file (/u0020 instead
of whitespace).
Is there a way so "/" file separator will not conflict with whitespace path
separator?

Thanks



--
View this message in context: 
http://maven.40175.n5.nabble.com/Formatting-classpath-in-Manifest-with-dependency-plugin-tp4418636p4418636.html
Sent from the Maven - Users mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to