Created
December 17, 2014 11:18
-
-
Save erasmas/ae41b9656034581a551a to your computer and use it in GitHub Desktop.
project.clj example for Cascalog app
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
(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