Skip to content

Instantly share code, notes, and snippets.

@lrenn
Last active December 26, 2015 01:59
Show Gist options
  • Save lrenn/7074702 to your computer and use it in GitHub Desktop.
Save lrenn/7074702 to your computer and use it in GitHub Desktop.
<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>
(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