@flyboarder thanks, ok I’ve included them
Now I’m running into another obstacle. I’m trying to make this package according to these instructions: https://github.com/cljsjs/packages/wiki/Creating-Packages . I’m at the step where I invoke the package command. It says it generated a .jar and a .pom, but I don’t see the files anywhere. I searched my entire HD, and it isn’t there. I should mention I didn’t include the .md5 checksum in the (download) task, could that be the reason it didn’t make the file?
Here’s the entire project so far: https://github.com/mikebelanger/blend4web
@mikebelanger: how are you building your package? build-jar
from bootlaces should do it
@flyboarder I’m building with all the package task, which has a bunch of sub-tasks in it : https://github.com/mikebelanger/blend4web/blob/master/build.boot
Oh lol, here run like this boot package install
Regarding boot-laces project, that looks pretty awesome, I guess I just feel like there’s something wrong with my build tasks, and I should learn how to fix those before I start using other tools
Install is built in I believe
You would have to do the same with other boot tools
@flyboarder lol thanks! That installed it! I had a feeling it was something basic I was missing
Yeah that one frustrates me too when I forget it
@mikebelanger: but at least your task is fine :)
When I just wrote boot package
it said it wrote the jar and pom files, so I was looking around forever 😛 I guess it just wrote those files to the FileSet thing that boot uses
@flyboarder thanks yeah I was looking at my task function forever too 😛
Yeah boot only works on the fileset, to move your builds to local maven you need install
and thanks for the tip about boot-laces, I’ll have to look into that template