0:02 AM
puredanger joined the channel
0:09 AM
aaelony has quit
1:27 AM
Balveda-2 joined the channel
1:28 AM
Balveda has quit
3:52 AM
alandipert has quit
4:08 AM
Megal has quit
4:09 AM
tcrawley-away is now known as tcrawley
4:11 AM
tcrawley is now known as tcrawley-away
5:34 AM
NOTICE: [boot] alandipert opened issue #297: Add by-path http://git.io/vndvx
5:36 AM
DomKM joined the channel
5:36 AM
NOTICE: [boot] alandipert closed issue #297: Add by-path http://git.io/vndvx
5:40 AM
candiru joined the channel
5:44 AM
candiru has quit
6:26 AM
schmir joined the channel
6:49 AM
nico_ joined the channel
7:15 AM
jcidaho joined the channel
7:50 AM
jcidaho joined the channel
8:00 AM
dm3 joined the channel
8:11 AM
catonano joined the channel
8:24 AM
nathan7 has quit
8:35 AM
schmir has quit
9:36 AM
dm3 joined the channel
9:37 AM
jcidaho joined the channel
10:31 AM
nico_ has quit
10:45 AM
agarman joined the channel
10:45 AM
nico_ joined the channel
11:06 AM
catonano has quit
11:12 AM
nico_ has quit
11:17 AM
nico_ joined the channel
12:05 PM
jcidaho joined the channel
12:21 PM
nico_ has quit
13:08 PM
jcidaho joined the channel
13:10 PM
jcidaho joined the channel
13:47 PM
agarman_ joined the channel
13:50 PM
agarman has quit
14:10 PM
jcidaho joined the channel
14:11 PM
agarman_ has quit
15:00 PM
nico__ joined the channel
15:04 PM
nico__ has quit
15:05 PM
dm3 has quit
15:06 PM
nico__ joined the channel
15:06 PM
dm3 joined the channel
15:23 PM
nico__ has quit
16:17 PM
dm3_ joined the channel
16:18 PM
aaelony joined the channel
18:09 PM
jcidaho joined the channel
18:26 PM
jcidaho joined the channel
18:46 PM
dm3 joined the channel
18:54 PM
jcidaho joined the channel
19:04 PM
chris___ joined the channel
19:05 PM
chris___
I am trying to get going with hoplon, got this error when I tried to run 'boot dev'
19:05 PM
Exception in thread "main" java.lang.IllegalArgumentException: Bad artifact coordinates boot:pod:jar:, expected format is
19:06 PM
boot worked for me initially and now actually every command produces the same error
19:06 PM
I installed it with the boot.sh file, then when I got the error I uninstalled it and tried again with homebrew
19:11 PM
jcidaho joined the channel
19:24 PM
mathiasx
chris___: Which version of Java are you on?
19:25 PM
chris___
java version "1.8.0_40" Java(TM) SE Runtime Environment (build 1.8.0_40-b25) Java HotSpot(TM) 64-Bit Server VM (build 25.40-b25, mixed mode)
19:26 PM
mathiasx
Hmm, that should be good.
19:27 PM
Does `boot` on its own give you the help text or same error?
19:28 PM
chris___
SAME ERROR
19:28 PM
oops
19:28 PM
here is the full error
19:28 PM
Chriss-Mac-Pro:address-book chrisreilly$ boot -h Exception in thread "main" java.lang.IllegalArgumentException: Bad artifact coordinates boot:pod:jar:, expected format is <groupId>:<artifactId>[:<extension>[:<classifier>]]:<version> at org.sonatype.aether.util.artifact.DefaultArtifact.<init>(DefaultArtifact.java:73) at org.sonatype.aether.util.artifact.DefaultArtifact.<init>(DefaultArtifact.java:56) at cemerick.pomegranate.aether
19:28 PM
19:37 PM
alandipert joined the channel
19:38 PM
mathiasx
hey chris___, went and pinged alandipert
19:39 PM
my thinking was maybe try to delete the stuff in ~/.boot (except for ~/.boot/profile.boot )
19:39 PM
chris___ has quit
19:40 PM
alandipert
hm, my bouncer died.
19:57 PM
chris___ joined the channel
20:00 PM
chris___
FYI I rebooted and cleared the cache dir out of ~/.boot, getting the same error
20:00 PM
there didn't seem to be a profile.boot file for some reason
20:11 PM
alandipert
chris___, can you paste your error again pls?
20:12 PM
mathiasx
20:13 PM
chris___
20:17 PM
alandipert
chris___, do you have a brand new boot.sh?
20:17 PM
or did you install from homebrew?
20:18 PM
chris___
alandipert I tried both
20:18 PM
The shell version first, and it worked initially then started throwing that error
20:24 PM
alandipert
chris___, can you try: boot -V
20:24 PM
and paste output?
20:25 PM
also, can you try from a different directory or /tmp or something? in case there is an errant build.boot or boot.properties
20:25 PM
chris___
#https://github.com/boot-clj/boot #Fri Sep 25 13:25:35 PDT 2015 BOOT_CLOJURE_VERSION=1.7.0 BOOT_VERSION=2.3.0 #App version: 2.2.0
20:27 PM
aha
20:27 PM
working outside of the address-book example dir
20:29 PM
I set the boot version in the boot.properities file to 2.3.0 and it worked fine
20:31 PM
thanks for your help mathiasx and alandipert!
20:32 PM
alandipert
chris___, np!
20:58 PM
chris___ has quit
22:03 PM
ddyba joined the channel
22:03 PM
ddyba
I'm trying to port over my project.clj but I'm stuck with what to do with :java-source-paths
22:04 PM
I have a directory /javasrc/something/foo.java relative to my project root
22:05 PM
I get a ClassNotFoundException when I run (comp (aot) (pom) (jar))
22:08 PM
So, I know the class can't be found because I haven't specified where the java code lives. How would I tell boot where to find it?
22:17 PM
mathiasx
Have you tried adding it to source-paths? I'm not sure if that works, but that be my first try.
22:20 PM
ddyba
mathiasx: yes, I tried that but it still doesn't work
22:21 PM
I also don't see the subject covered in the docs
22:21 PM
mathiasx
Hmm. Trying to think of what boot tasks use Java libraries that we could look in.
22:24 PM
ddyba
there's a javac task, maybe I need to use that
22:26 PM
ok, that got me pretty close! now I got an error when writing the pom.xml file
22:27 PM
So javac to compile java sources
22:27 PM
and you have to include your directory with the java files in the :source-paths
22:30 PM
alandipert
22:31 PM
is an example of javac usage, anyway
22:36 PM
ddyba, what pom error are you seeing?
22:37 PM
ddyba has quit
22:38 PM
ddyba joined the channel
22:40 PM
ddyba1 joined the channel
22:41 PM
ddyba has quit
22:52 PM
dm3 joined the channel
22:57 PM
ddyba1
alandipert: I'm confused now with the difference between :resource-paths and :source-paths
22:58 PM
I'm unable to use the (pom) call. It throws a ClassCastException: a vector can't be cast to Named
22:59 PM
alandipert
22:59 PM
in a nutshell, sources don't end up in target/, but resource do
23:00 PM
if you were to add your java code to :resource-paths, you'd see .java in target/ in addition to .class
23:01 PM
ddyba1
alandipert: ah, got it. The link helped clarify things.
23:01 PM
alandipert
cool
23:01 PM
if you post your build.boot i can puzzle out the pom problem
23:02 PM
ddyba1
ok, I'll put up a gist shortrly
23:02 PM
shortly*
23:03 PM
23:03 PM
I have two files that need to be aot compiled
23:04 PM
and according to the link you shared, I ought to put them in a separate folder
23:04 PM
so that I can point to them in source-paths:
23:16 PM
alandipert
i gotta go, but do drop a note on discourse if you it anymore snags
23:16 PM
later
23:16 PM
*hit any more
23:30 PM
aaelony has quit
23:43 PM
ddyba1 has quit