Apache ant is a venerable java build tool providing numerous useful and robust tasks, ranging from file system operations to os operations. cljant provides a simple way to access those tasks in clojure by treating each as a function.
Add the following dependency to your project.clj
file:
[io.czlab/cljant "2.0.0"]
(ns demo.core
(:require [czlab.cljant.antlib :as a]))
(defn compileAndRun [srcDir destDir]
(a/run*
(a/javac
{:srcdir srcDir
:destdir destDir
:target "8"
:executable "/bin/javac"
:debugLevel "lines,vars,source"
:includeantruntime false
:debug true
:fork true}
[[:compilerarg {:line "-Xlint:deprecation"}]
[:include {:name "**/*.java"}]
[:classpath
[[:path {:location "/dev/classes"}]
[:fileset {:dir "/home/joe/maven"
:includes {:name "**/*.jar"}}]]]])
(a/sleep {:seconds "2"})
(a/java
{:classname "demo.App"
:fork true
:failonerror true}
[[:arg {:value "argvalue1"}]
[:classpath
[[:path {:location destDir}]]]])
(a/sleep {:seconds "2"})))
Please use the project's GitHub issues page for all questions, ideas, etc. Pull requests welcome. See the project's GitHub contributors page for a list of contributors.
Copyright © 2013-2020 Kenneth Leung
Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close