export CLASSPATH= ${pom.getDependencyPath( dep.getId() )}: java ${mainclass} export CLASSPATH= $$DAISY_HOME/lib/${dep.getGroupId()}/jars/${dep.getArtifactId()}-${dep.getVersion()}.jar: java -Ddaisy.home=$$DAISY_HOME ${mainclass} set CLASSPATH= ${pom.getDependencyPath( dep.getId() )}; java ${mainclass} @echo off if "%OS%"=="Windows_NT" @setlocal if "%DAISY_HOME%"=="" goto daisyHomeNotSet set CLASSPATH= %DAISY_HOME%\lib\${dep.getGroupId()}\jars\${dep.getArtifactId()}-${dep.getVersion()}.jar; java -Ddaisy.home=%DAISY_HOME% ${mainclass} goto end :daisyHomeNotSet echo "DAISY_HOME not set!" goto end :end