私はlein 2.0を使用しています
メインアプリなら
(defproject rexfer "1.0.1-SNAPSHOT"
:description "Filters standard report from Patriot Properties' AssessPro."
:dependencies [[org.clojure/clojure "1.4.0"]
[org.clojure/tools.cli "0.2.2"]
[org.clojure/data.csv "0.1.2"]
[rexfer-csv "1.0.0-SNAPSHOT"]
[util "1.0.7-SNAPSHOT"]]
:omit-source true
:main rexfer.core)
ライブラリに依存 (util 1.07-SNAPSHOT)
(defproject util "1.0.7-SNAPSHOT"
:description "A general purpose Clojure library"
:dependencies [[org.clojure/clojure "1.4.0"]
[clojure-csv/clojure-csv "1.3.2"]
[org.clojure/data.csv "0.1.2"]]
:aot [util.core]
:omit-source true)
参照は .jar ファイルまたはスタンドアロンの .jar をフェッチしていますか?
この質問をする別の方法は、次のようなライブラリ用のスタンドアロン jar を構築する必要があるかどうかです。
util "1.0.7-SNAPSHOT"
それらを使用するためにメインアプリケーションが必要ですか?