From 13520dba00788eb92d7d15a44bf535003c6dfbda Mon Sep 17 00:00:00 2001 From: Phil Hagelberg Date: Fri, 22 Oct 2010 07:35:22 -0700 Subject: [PATCH] Add password-protected repository in sample.project.clj. --- sample.project.clj | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sample.project.clj b/sample.project.clj index 7b317a69..ff41c36e 100644 --- a/sample.project.clj +++ b/sample.project.clj @@ -71,8 +71,10 @@ :warn-on-reflection true ;; Set this in order to only use the :repositories you list below. :omit-default-repositories true - :repositories { "java.net" "http://download.java.net/maven/2" - "modularity" "http://m2.modularity.net.au/releases"} + :repositories {"java.net" "http://download.java.net/maven/2" + "private" {:url "http://private.repo" + :username "milgrim" + :password "locative.1"}} ;; If you'd rather use a different directory structure, you can set these. :source-path "src/main/clojure" :library-path "target/dependency"