1 つのディレクトリに lein プロジェクトがあり、実行時にダウンロードされる .jar を使用する代わりに
> lein deps
複製された github リポジトリのソースを使用したい (現在の jar にはない最近の修正が含まれている)。ライニンゲンでこれを行う標準的な方法は何ですか?
ここに私のプロジェクトファイルがあります:
(defproject oroboros "1.0.0-SNAPSHOT"
:description "FIXME: write description"
:dependencies [[org.clojure/clojure "1.2.1"]
[org.clojure/clojure-contrib "1.2.0"]
[clojure-source "1.2.1"]
[overtone "0.3.0"]
[penumbra "0.6.0-SNAPSHOT"]]
:native-dependencies [[penumbra/lwjgl "2.4.2"]]
:dev-dependencies [[native-deps "1.0.5"]
[swank-clojure "1.4.0-SNAPSHOT"]])
clojars の倍音リポジトリではなく、github の倍音リポジトリを使用したいと考えています。
https://github.com/overtone/overtone
これは可能ですか?