I have a pom that works on windows, but does not work if I use it on linux 
because the paths are different, such as:

<dependency>
        <groupId>com.toedter</groupId>
        <artifactId>jcalendar</artifactId>
        <version>1.2.2</version>
        <scope>system</scope>
        <systemPath>
                C:/projects/java.3rdParty/jars/jcalendar-1.3.2.jar
        </systemPath>
</dependency>

is there any way to use an environment variable for the start of the path or 
some other solution?

on linux the path would be 

<systemPath>
        /home/myname/workspace/java.3rdParty/jars/jcalendar-1.3.2.jar
</systemPath>

thoughts?


---------------------------------------------------------------------
To unsubscribe from this list please visit:

    http://xircles.codehaus.org/manage_email

Reply via email to