Fixed pathing in execution scripts

This commit is contained in:
Michael Minella
2013-06-10 14:33:32 -05:00
parent bb1ec38a18
commit 0e9ad8500a
2 changed files with 2 additions and 2 deletions

View File

@@ -5,4 +5,4 @@ IF NOT DEFINED JAVA_HOME (
EXIT /B
)
%JAVA_HOME%\bin\java -cp resources\;lib\* org.springframework.batch.core.launch.support.CommandLineJobRunner classpath:/launch-context.xml personJob
%JAVA_HOME%\bin\java -cp resources\;lib\* org.springframework.batch.core.launch.support.CommandLineJobRunner example.LaunchContext personJob

View File

@@ -5,4 +5,4 @@ if [ "$JAVA_HOME" = "" ]; then
exit 1
fi
$JAVA_HOME/bin/java -cp resources/:lib/* org.springframework.batch.core.launch.support.CommandLineJobRunner classpath:/launch-context.xml personJob
$JAVA_HOME/bin/java -cp resources/:lib/* org.springframework.batch.core.launch.support.CommandLineJobRunner example.LaunchContext personJob