Re: [ClojureScript] Build error with Clojurescript 1.7.170

2015-11-07 Thread Torsten Uhlmann
Yes, that was it, thanks.

That one somehow slipped through.

Thanks,
Torsten.


Am Samstag, 7. November 2015 19:22:43 UTC+1 schrieb David Nolen:
> You need to use lein-cljsbuild 1.1.1.
> 
> 
> HTH,
> David
> 
> 
> On Sat, Nov 7, 2015 at 2:51 AM, Torsten Uhlmann  wrote:
> Hi,
> 
> 
> 
> I did update my project from Clojurescript 1.7.145 to 1.7.170 (thats the only 
> change) and now a "lein cljsbuild once" throws the exception below.
> 
> 
> 
> I guess there's something in my project throwing it off, could you provide 
> any insight what I should be searching for?
> 
> 
> 
> The project was created from a Chestnut template a while ago and has morphed 
> since then...
> 
> 
> 
> lein cljsbuild once
> 
> Compiling ClojureScript.
> 
> Compiling "resources/public/js/app.js" from ("src/cljs" "env/dev/cljs")...
> 
> Compiling "resources/public/js/app.js" failed.
> 
> Exception in thread "main" java.lang.AbstractMethodError: Method 
> cljsbuild/compiler/SourcePaths._find_sources(Ljava/lang/Object;)Ljava/lang/Object;
>  is abstract, compiling:(/tmp/form-init5312459399003658114.clj:1:73)
> 
>         at clojure.lang.Compiler.load(Compiler.java:7239)
> 
>         at clojure.lang.Compiler.loadFile(Compiler.java:7165)
> 
>         at clojure.main$load_script.invoke(main.clj:275)
> 
>         at clojure.main$init_opt.invoke(main.clj:280)
> 
>         at clojure.main$initialize.invoke(main.clj:308)
> 
>         at clojure.main$null_opt.invoke(main.clj:343)
> 
>         at clojure.main$main.doInvoke(main.clj:421)
> 
>         at clojure.lang.RestFn.invoke(RestFn.java:421)
> 
>         at clojure.lang.Var.invoke(Var.java:383)
> 
>         at clojure.lang.AFn.applyToHelper(AFn.java:156)
> 
>         at clojure.lang.Var.applyTo(Var.java:700)
> 
>         at clojure.main.main(main.java:37)
> 
> Caused by: java.lang.AbstractMethodError: Method 
> cljsbuild/compiler/SourcePaths._find_sources(Ljava/lang/Object;)Ljava/lang/Object;
>  is abstract
> 
>         at cljsbuild.compiler.SourcePaths._find_sources(compiler.clj)
> 
>         at cljs.closure$build$fn__4099.invoke(closure.clj:1774)
> 
>         at clojure.lang.Atom.swap(Atom.java:37)
> 
>         at clojure.core$swap_BANG_.invoke(core.clj:2238)
> 
>         at cljs.closure$build.invoke(closure.clj:1768)
> 
>         at cljs.closure$build.invoke(closure.clj:1752)
> 
>         at cljsbuild.compiler$compile_cljs$fn__4203.invoke(compiler.clj:81)
> 
>         at cljsbuild.compiler$compile_cljs.invoke(compiler.clj:80)
> 
>         at cljsbuild.compiler$run_compiler.invoke(compiler.clj:187)
> 
>         at 
> user$eval4337$iter__4373__4377$fn__4378$fn__4396.invoke(form-init5312459399003658114.clj:1)
> 
>         at 
> user$eval4337$iter__4373__4377$fn__4378.invoke(form-init5312459399003658114.clj:1)
> 
>         at clojure.lang.LazySeq.sval(LazySeq.java:40)
> 
>         at clojure.lang.LazySeq.seq(LazySeq.java:49)
> 
>         at clojure.lang.RT.seq(RT.java:507)
> 
>         at clojure.core$seq__4128.invoke(core.clj:137)
> 
>         at clojure.core$dorun.invoke(core.clj:3009)
> 
>         at clojure.core$doall.invoke(core.clj:3025)
> 
>         at user$eval4337.invoke(form-init5312459399003658114.clj:1)
> 
>         at clojure.lang.Compiler.eval(Compiler.java:6782)
> 
>         at clojure.lang.Compiler.eval(Compiler.java:6772)
> 
>         at clojure.lang.Compiler.load(Compiler.java:7227)
> 
>         ... 11 more
> 
> Subprocess failed
> 
> 
> 
> Thanks,
> 
> Torsten.
> 
> 
> 
> --
> 
> Note that posts from new members are moderated - please be patient with your 
> first post.
> 
> ---
> 
> You received this message because you are subscribed to the Google Groups 
> "ClojureScript" group.
> 
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to clojurescrip...@googlegroups.com.
> 
> To post to this group, send email to clojur...@googlegroups.com.
> 
> Visit this group at http://groups.google.com/group/clojurescript.

-- 
Note that posts from new members are moderated - please be patient with your 
first post.
--- 
You received this message because you are subscribed to the Google Groups 
"ClojureScript" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojurescript+unsubscr...@googlegroups.com.
To post to this group, send email to clojurescript@googlegroups.com.
Visit this group at http://groups.google.com/group/clojurescript.


Re: [ClojureScript] Build error with Clojurescript 1.7.170

2015-11-07 Thread David Nolen
You need to use lein-cljsbuild 1.1.1.

HTH,
David

On Sat, Nov 7, 2015 at 2:51 AM, Torsten Uhlmann 
wrote:

> Hi,
>
> I did update my project from Clojurescript 1.7.145 to 1.7.170 (thats the
> only change) and now a "lein cljsbuild once" throws the exception below.
>
> I guess there's something in my project throwing it off, could you provide
> any insight what I should be searching for?
>
> The project was created from a Chestnut template a while ago and has
> morphed since then...
>
> lein cljsbuild once
> Compiling ClojureScript.
> Compiling "resources/public/js/app.js" from ("src/cljs" "env/dev/cljs")...
> Compiling "resources/public/js/app.js" failed.
> Exception in thread "main" java.lang.AbstractMethodError: Method
> cljsbuild/compiler/SourcePaths._find_sources(Ljava/lang/Object;)Ljava/lang/Object;
> is abstract, compiling:(/tmp/form-init5312459399003658114.clj:1:73)
> at clojure.lang.Compiler.load(Compiler.java:7239)
> at clojure.lang.Compiler.loadFile(Compiler.java:7165)
> at clojure.main$load_script.invoke(main.clj:275)
> at clojure.main$init_opt.invoke(main.clj:280)
> at clojure.main$initialize.invoke(main.clj:308)
> at clojure.main$null_opt.invoke(main.clj:343)
> at clojure.main$main.doInvoke(main.clj:421)
> at clojure.lang.RestFn.invoke(RestFn.java:421)
> at clojure.lang.Var.invoke(Var.java:383)
> at clojure.lang.AFn.applyToHelper(AFn.java:156)
> at clojure.lang.Var.applyTo(Var.java:700)
> at clojure.main.main(main.java:37)
> Caused by: java.lang.AbstractMethodError: Method
> cljsbuild/compiler/SourcePaths._find_sources(Ljava/lang/Object;)Ljava/lang/Object;
> is abstract
> at cljsbuild.compiler.SourcePaths._find_sources(compiler.clj)
> at cljs.closure$build$fn__4099.invoke(closure.clj:1774)
> at clojure.lang.Atom.swap(Atom.java:37)
> at clojure.core$swap_BANG_.invoke(core.clj:2238)
> at cljs.closure$build.invoke(closure.clj:1768)
> at cljs.closure$build.invoke(closure.clj:1752)
> at cljsbuild.compiler$compile_cljs$fn__4203.invoke(compiler.clj:81)
> at cljsbuild.compiler$compile_cljs.invoke(compiler.clj:80)
> at cljsbuild.compiler$run_compiler.invoke(compiler.clj:187)
> at
> user$eval4337$iter__4373__4377$fn__4378$fn__4396.invoke(form-init5312459399003658114.clj:1)
> at
> user$eval4337$iter__4373__4377$fn__4378.invoke(form-init5312459399003658114.clj:1)
> at clojure.lang.LazySeq.sval(LazySeq.java:40)
> at clojure.lang.LazySeq.seq(LazySeq.java:49)
> at clojure.lang.RT.seq(RT.java:507)
> at clojure.core$seq__4128.invoke(core.clj:137)
> at clojure.core$dorun.invoke(core.clj:3009)
> at clojure.core$doall.invoke(core.clj:3025)
> at user$eval4337.invoke(form-init5312459399003658114.clj:1)
> at clojure.lang.Compiler.eval(Compiler.java:6782)
> at clojure.lang.Compiler.eval(Compiler.java:6772)
> at clojure.lang.Compiler.load(Compiler.java:7227)
> ... 11 more
> Subprocess failed
>
> Thanks,
> Torsten.
>
> --
> Note that posts from new members are moderated - please be patient with
> your first post.
> ---
> You received this message because you are subscribed to the Google Groups
> "ClojureScript" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to clojurescript+unsubscr...@googlegroups.com.
> To post to this group, send email to clojurescript@googlegroups.com.
> Visit this group at http://groups.google.com/group/clojurescript.
>

-- 
Note that posts from new members are moderated - please be patient with your 
first post.
--- 
You received this message because you are subscribed to the Google Groups 
"ClojureScript" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojurescript+unsubscr...@googlegroups.com.
To post to this group, send email to clojurescript@googlegroups.com.
Visit this group at http://groups.google.com/group/clojurescript.


Re: [ClojureScript] Build error with Clojurescript 1.7.170

2015-11-07 Thread Peter Lubell-Doughtie
What version of lein-cljsbuild are you using? It works fine for me with
1.1.1-SNAPSHOT, I imagine it's fine with 1.1.1 too.
On Nov 7, 2015 10:01 AM, "Torsten Uhlmann" 
wrote:

> Hi,
>
> I did update my project from Clojurescript 1.7.145 to 1.7.170 (thats the
> only change) and now a "lein cljsbuild once" throws the exception below.
>
> I guess there's something in my project throwing it off, could you provide
> any insight what I should be searching for?
>
> The project was created from a Chestnut template a while ago and has
> morphed since then...
>
> lein cljsbuild once
> Compiling ClojureScript.
> Compiling "resources/public/js/app.js" from ("src/cljs" "env/dev/cljs")...
> Compiling "resources/public/js/app.js" failed.
> Exception in thread "main" java.lang.AbstractMethodError: Method
> cljsbuild/compiler/SourcePaths._find_sources(Ljava/lang/Object;)Ljava/lang/Object;
> is abstract, compiling:(/tmp/form-init5312459399003658114.clj:1:73)
> at clojure.lang.Compiler.load(Compiler.java:7239)
> at clojure.lang.Compiler.loadFile(Compiler.java:7165)
> at clojure.main$load_script.invoke(main.clj:275)
> at clojure.main$init_opt.invoke(main.clj:280)
> at clojure.main$initialize.invoke(main.clj:308)
> at clojure.main$null_opt.invoke(main.clj:343)
> at clojure.main$main.doInvoke(main.clj:421)
> at clojure.lang.RestFn.invoke(RestFn.java:421)
> at clojure.lang.Var.invoke(Var.java:383)
> at clojure.lang.AFn.applyToHelper(AFn.java:156)
> at clojure.lang.Var.applyTo(Var.java:700)
> at clojure.main.main(main.java:37)
> Caused by: java.lang.AbstractMethodError: Method
> cljsbuild/compiler/SourcePaths._find_sources(Ljava/lang/Object;)Ljava/lang/Object;
> is abstract
> at cljsbuild.compiler.SourcePaths._find_sources(compiler.clj)
> at cljs.closure$build$fn__4099.invoke(closure.clj:1774)
> at clojure.lang.Atom.swap(Atom.java:37)
> at clojure.core$swap_BANG_.invoke(core.clj:2238)
> at cljs.closure$build.invoke(closure.clj:1768)
> at cljs.closure$build.invoke(closure.clj:1752)
> at cljsbuild.compiler$compile_cljs$fn__4203.invoke(compiler.clj:81)
> at cljsbuild.compiler$compile_cljs.invoke(compiler.clj:80)
> at cljsbuild.compiler$run_compiler.invoke(compiler.clj:187)
> at
> user$eval4337$iter__4373__4377$fn__4378$fn__4396.invoke(form-init5312459399003658114.clj:1)
> at
> user$eval4337$iter__4373__4377$fn__4378.invoke(form-init5312459399003658114.clj:1)
> at clojure.lang.LazySeq.sval(LazySeq.java:40)
> at clojure.lang.LazySeq.seq(LazySeq.java:49)
> at clojure.lang.RT.seq(RT.java:507)
> at clojure.core$seq__4128.invoke(core.clj:137)
> at clojure.core$dorun.invoke(core.clj:3009)
> at clojure.core$doall.invoke(core.clj:3025)
> at user$eval4337.invoke(form-init5312459399003658114.clj:1)
> at clojure.lang.Compiler.eval(Compiler.java:6782)
> at clojure.lang.Compiler.eval(Compiler.java:6772)
> at clojure.lang.Compiler.load(Compiler.java:7227)
> ... 11 more
> Subprocess failed
>
> Thanks,
> Torsten.
>
> --
> Note that posts from new members are moderated - please be patient with
> your first post.
> ---
> You received this message because you are subscribed to the Google Groups
> "ClojureScript" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to clojurescript+unsubscr...@googlegroups.com.
> To post to this group, send email to clojurescript@googlegroups.com.
> Visit this group at http://groups.google.com/group/clojurescript.
>

-- 
Note that posts from new members are moderated - please be patient with your 
first post.
--- 
You received this message because you are subscribed to the Google Groups 
"ClojureScript" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojurescript+unsubscr...@googlegroups.com.
To post to this group, send email to clojurescript@googlegroups.com.
Visit this group at http://groups.google.com/group/clojurescript.


[ClojureScript] Build error with Clojurescript 1.7.170

2015-11-07 Thread Torsten Uhlmann
Hi,

I did update my project from Clojurescript 1.7.145 to 1.7.170 (thats the only 
change) and now a "lein cljsbuild once" throws the exception below.

I guess there's something in my project throwing it off, could you provide any 
insight what I should be searching for?

The project was created from a Chestnut template a while ago and has morphed 
since then...

lein cljsbuild once
Compiling ClojureScript.
Compiling "resources/public/js/app.js" from ("src/cljs" "env/dev/cljs")...
Compiling "resources/public/js/app.js" failed.
Exception in thread "main" java.lang.AbstractMethodError: Method 
cljsbuild/compiler/SourcePaths._find_sources(Ljava/lang/Object;)Ljava/lang/Object;
 is abstract, compiling:(/tmp/form-init5312459399003658114.clj:1:73)
at clojure.lang.Compiler.load(Compiler.java:7239)
at clojure.lang.Compiler.loadFile(Compiler.java:7165)
at clojure.main$load_script.invoke(main.clj:275)
at clojure.main$init_opt.invoke(main.clj:280)
at clojure.main$initialize.invoke(main.clj:308)
at clojure.main$null_opt.invoke(main.clj:343)
at clojure.main$main.doInvoke(main.clj:421)
at clojure.lang.RestFn.invoke(RestFn.java:421)
at clojure.lang.Var.invoke(Var.java:383)
at clojure.lang.AFn.applyToHelper(AFn.java:156)
at clojure.lang.Var.applyTo(Var.java:700)
at clojure.main.main(main.java:37)
Caused by: java.lang.AbstractMethodError: Method 
cljsbuild/compiler/SourcePaths._find_sources(Ljava/lang/Object;)Ljava/lang/Object;
 is abstract
at cljsbuild.compiler.SourcePaths._find_sources(compiler.clj)
at cljs.closure$build$fn__4099.invoke(closure.clj:1774)
at clojure.lang.Atom.swap(Atom.java:37)
at clojure.core$swap_BANG_.invoke(core.clj:2238)
at cljs.closure$build.invoke(closure.clj:1768)
at cljs.closure$build.invoke(closure.clj:1752)
at cljsbuild.compiler$compile_cljs$fn__4203.invoke(compiler.clj:81)
at cljsbuild.compiler$compile_cljs.invoke(compiler.clj:80)
at cljsbuild.compiler$run_compiler.invoke(compiler.clj:187)
at 
user$eval4337$iter__4373__4377$fn__4378$fn__4396.invoke(form-init5312459399003658114.clj:1)
at 
user$eval4337$iter__4373__4377$fn__4378.invoke(form-init5312459399003658114.clj:1)
at clojure.lang.LazySeq.sval(LazySeq.java:40)
at clojure.lang.LazySeq.seq(LazySeq.java:49)
at clojure.lang.RT.seq(RT.java:507)
at clojure.core$seq__4128.invoke(core.clj:137)
at clojure.core$dorun.invoke(core.clj:3009)
at clojure.core$doall.invoke(core.clj:3025)
at user$eval4337.invoke(form-init5312459399003658114.clj:1)
at clojure.lang.Compiler.eval(Compiler.java:6782)
at clojure.lang.Compiler.eval(Compiler.java:6772)
at clojure.lang.Compiler.load(Compiler.java:7227)
... 11 more
Subprocess failed

Thanks,
Torsten.

-- 
Note that posts from new members are moderated - please be patient with your 
first post.
--- 
You received this message because you are subscribed to the Google Groups 
"ClojureScript" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojurescript+unsubscr...@googlegroups.com.
To post to this group, send email to clojurescript@googlegroups.com.
Visit this group at http://groups.google.com/group/clojurescript.