leiningen/resources/script-template.bat

13 lines
321 B
Batchfile
Raw Normal View History

2010-11-16 22:27:15 +00:00
@echo off
rem This script was automatically generated by Leiningen.
setLocal
if "x%%JVM_OPTS%%" == "x" set JVM_OPTS=%%JAVA_OPTS%%
2010-11-16 22:27:15 +00:00
set CLASSPATH="%s"
2011-01-20 05:32:42 +00:00
set VERSION="%s"
2010-11-16 22:27:15 +00:00
2011-01-20 05:32:42 +00:00
java -cp "%%CLASSPATH%%" %%JVM_OPTS%% -Dproject.version=%%VERSION%%^
2010-11-16 22:27:15 +00:00
clojure.main -e "(use '%s)(apply -main *command-line-args*)" NUL %%*