Created
March 24, 2013 06:10
-
-
Save royseto/5230768 to your computer and use it in GitHub Desktop.
Build log of a simple project depending on Cascalog 1.10.1
This file contains 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
(ns impatient.core | |
(:use [cascalog.api] | |
[cascalog.more-taps :only (hfs-delimited)]) | |
(:gen-class)) | |
(defn -main [in out & args] | |
(?<- (hfs-delimited out) | |
[?doc ?line] | |
((hfs-delimited in :skip-header? true) ?doc ?line))) |
This file contains 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 impatient "0.1.0-SNAPSHOT" | |
:description "Cascalog for the Impatient - Part 1" | |
:url "https://github.com/Quantisan/Impatient/tree/cascalog/part1" | |
:license {:name "Eclipse Public License" | |
:url "http://www.eclipse.org/legal/epl-v10.html"} | |
:uberjar-name "impatient.jar" | |
:aot [impatient.core] | |
:main impatient.core | |
:dependencies [[org.clojure/clojure "1.4.0"] | |
[cascalog "1.10.1"] | |
[cascalog/cascalog-more-taps "1.10.1"]] | |
:profiles {:provided {:dependencies [[org.apache.hadoop/hadoop-core "0.20.2-dev"]]}}) |
This file contains 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
roy-setos-macbook:cascalog-file-copy royseto$ lein clean | |
roy-setos-macbook:cascalog-file-copy royseto$ lein compile | |
Compiling impatient.core | |
Exception in thread "main" java.io.FileNotFoundException: Could not locate cascalog/api__init.class or cascalog/api.clj on classpath: , compiling:(core.clj:1) | |
at clojure.lang.Compiler$InvokeExpr.eval(Compiler.java:3387) | |
at clojure.lang.Compiler.compile1(Compiler.java:7035) | |
at clojure.lang.Compiler.compile1(Compiler.java:7025) | |
at clojure.lang.Compiler.compile(Compiler.java:7097) | |
at clojure.lang.RT.compile(RT.java:387) | |
at clojure.lang.RT.load(RT.java:427) | |
at clojure.lang.RT.load(RT.java:400) | |
at clojure.core$load$fn__4890.invoke(core.clj:5415) | |
at clojure.core$load.doInvoke(core.clj:5414) | |
at clojure.lang.RestFn.invoke(RestFn.java:408) | |
at clojure.core$load_one.invoke(core.clj:5227) | |
at clojure.core$compile$fn__4895.invoke(core.clj:5426) | |
at clojure.core$compile.invoke(core.clj:5425) | |
at user$eval7.invoke(NO_SOURCE_FILE:1) | |
at clojure.lang.Compiler.eval(Compiler.java:6511) | |
at clojure.lang.Compiler.eval(Compiler.java:6501) | |
at clojure.lang.Compiler.eval(Compiler.java:6477) | |
at clojure.core$eval.invoke(core.clj:2797) | |
at clojure.main$eval_opt.invoke(main.clj:297) | |
at clojure.main$initialize.invoke(main.clj:316) | |
at clojure.main$null_opt.invoke(main.clj:349) | |
at clojure.main$main.doInvoke(main.clj:427) | |
at clojure.lang.RestFn.invoke(RestFn.java:421) | |
at clojure.lang.Var.invoke(Var.java:419) | |
at clojure.lang.AFn.applyToHelper(AFn.java:163) | |
at clojure.lang.Var.applyTo(Var.java:532) | |
at clojure.main.main(main.java:37) | |
Caused by: java.io.FileNotFoundException: Could not locate cascalog/api__init.class or cascalog/api.clj on classpath: | |
at clojure.lang.RT.load(RT.java:432) | |
at clojure.lang.RT.load(RT.java:400) | |
at clojure.core$load$fn__4890.invoke(core.clj:5415) | |
at clojure.core$load.doInvoke(core.clj:5414) | |
at clojure.lang.RestFn.invoke(RestFn.java:408) | |
at clojure.core$load_one.invoke(core.clj:5227) | |
at clojure.core$load_lib.doInvoke(core.clj:5264) | |
at clojure.lang.RestFn.applyTo(RestFn.java:142) | |
at clojure.core$apply.invoke(core.clj:603) | |
at clojure.core$load_libs.doInvoke(core.clj:5298) | |
at clojure.lang.RestFn.applyTo(RestFn.java:137) | |
at clojure.core$apply.invoke(core.clj:605) | |
at clojure.core$use.doInvoke(core.clj:5392) | |
at clojure.lang.RestFn.invoke(RestFn.java:421) | |
at impatient.core$loading__4784__auto__.invoke(core.clj:1) | |
at clojure.lang.AFn.applyToHelper(AFn.java:159) | |
at clojure.lang.AFn.applyTo(AFn.java:151) | |
at clojure.lang.Compiler$InvokeExpr.eval(Compiler.java:3382) | |
... 26 more | |
Compilation failed: Subprocess failed | |
roy-setos-macbook:cascalog-file-copy royseto$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment