Created
July 9, 2012 17:08
-
-
Save eigenhombre/3077676 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| $ lein version | |
| Leiningen 1.7.1 on Java 1.6.0_33 Java HotSpot(TM) 64-Bit Server VM | |
| $ cat project.clj | |
| (defproject quickstart "0.1.0-SNAPSHOT" | |
| :description "FIXME Pallet project for quickstart" | |
| :dependencies [[org.clojure/clojure "1.3.0"] | |
| [org.cloudhoist/pallet "0.7.1"] | |
| [org.cloudhoist/pallet-jclouds "1.3.0-beta.1"] | |
| ;; To get started we include all jclouds compute providers. | |
| ;; You may wish to replace this with the specific jclouds | |
| ;; providers you use, to reduce dependency sizes. | |
| [org.jclouds/jclouds-allblobstore "1.3.2"] | |
| [org.jclouds/jclouds-allcompute "1.3.2"] | |
| [org.jclouds.driver/jclouds-slf4j "1.3.2"] | |
| [org.slf4j/slf4j-api "1.6.1"] | |
| [ch.qos.logback/logback-core "1.0.0"] | |
| [ch.qos.logback/logback-classic "1.0.0"]] | |
| :dev-dependencies [[org.cloudhoist/pallet "0.7.1" :type "test-jar"] | |
| [org.cloudhoist/pallet-lein "0.5.0"]] | |
| :profiles {:dev {:dependencies [[org.cloudhoist/pallet-lein "0.5.0"]]}} | |
| :local-repo-classpath true | |
| :repositories | |
| {"sonatype-snapshots" "https://oss.sonatype.org/content/repositories/snapshots" | |
| "sonatype" "https://oss.sonatype.org/content/repositories/releases/"}) | |
| $ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment