Skip to content

Instantly share code, notes, and snippets.

@erasmas
Created December 17, 2014 11:18
Show Gist options
  • Save erasmas/ae41b9656034581a551a to your computer and use it in GitHub Desktop.
Save erasmas/ae41b9656034581a551a to your computer and use it in GitHub Desktop.
project.clj example for Cascalog app
(defproject myapp "0.1.0-SNAPSHOT"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:repositories [["conjars.org" "http://conjars.org/repo"]]
:dependencies [[org.clojure/clojure "1.6.0"]]
:aot [myapp.core]
:main myapp.core
:profiles {:provided {:dependencies [[org.apache.hadoop/hadoop-client "2.4.0"]
[org.apache.hadoop/hadoop-mapreduce-client-core "2.4.0"]]}
:dev {:dependencies [[org.apache.hadoop/hadoop-minicluster "2.4.0"]]}})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment