Skip to content

Instantly share code, notes, and snippets.

@cap10morgan
Created July 23, 2013 16:50
Show Gist options
  • Save cap10morgan/6064026 to your computer and use it in GitHub Desktop.
Save cap10morgan/6064026 to your computer and use it in GitHub Desktop.
lein new pallet [project-name] with-pallet '0.8.0-RC.1' with-pallet-jclouds '1.5.3' with-pallet-vmfest '0.3.0-alpha.5'
(defproject pallet-new "0.1.0-SNAPSHOT"
:description "FIXME Pallet project for pallet-new"
:dependencies [[org.clojure/clojure "1.4.0"]
[com.palletops/pallet "0.8.0-RC.1"]
[com.palletops/pallet-jclouds "1.5.3"]
;; 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.5.5"]
[org.jclouds/jclouds-allcompute "1.5.5"]
[org.jclouds.driver/jclouds-slf4j "1.5.5"
;; the declared version is old and can overrule the
;; resolved version
:exclusions [org.slf4j/slf4j-api]]
[org.jclouds.driver/jclouds-sshj "1.5.5"]
[com.palletops/pallet-vmfest "0.3.0-alpha.5"]
[ch.qos.logback/logback-classic "1.0.9"]]
:profiles {:dev
{:dependencies
[[com.palletops/pallet "0.8.0-RC.1"
:classifier "tests"]]
:plugins
[[com.palletops/pallet-lein "0.6.0-beta.9"]]}
:leiningen/reply
{:dependencies [[org.slf4j/jcl-over-slf4j "1.7.2"]]
:exclusions [commons-logging]}}
:local-repo-classpath true
:repositories
{"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