Last active
December 26, 2015 01:59
-
-
Save lrenn/7074702 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ivysettings> | |
<settings defaultResolver="main" /> | |
<resolvers> | |
<chain name="main" returnFirst="true"> | |
<url name="parspro-public"> | |
<ivy | |
pattern="http://repo.parspro.com/parspro-repository/advanced/[organisation]/[module]/ivys/ivy-[revision].xml" | |
/> | |
<artifact | |
pattern="http://repo.parspro.com/parspro-repository/advanced/[organisation]/[module]/jars/[artifact]-[revision].[ext]" | |
/> | |
</url> | |
<ibiblio root="http://repo1.maven.org/maven2" | |
m2compatible="true" name="central"/> | |
<ibiblio root="http://clojars.org/repo/" m2compatible="true" name="clojars"/> | |
</chain> | |
</resolvers> | |
</ivysettings> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defproject imogen "0.1.0-SNAPSHOT" | |
:description "FIXME: write description" | |
:url "http://example.com/FIXME" | |
:license {:name "Eclipse Public License" | |
:url "http://www.eclipse.org/legal/epl-v10.html"} | |
:ivy-settings "./ivysettings.xml" | |
:plugins [[lein-ivy "0.2.0-SNAPSHOT"]] | |
:hooks [leiningen.ivy] | |
:dependencies [[org.clojure/clojure "1.5.1"] | |
[com.sciplay/gls-db-service "1.0.2" :conf "default->release"]]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment