Fork me on GitHub
#boot
<
2017-05-08
>
dominicm10:05:14

> Received fatal alert: protocol_version This is probably your clue

dominicm10:05:52

I'm guessing there is something out of date on their system. I don't see a printout specifying the java version there… could be that?

grounded_sage15:05:08

@dominicm cheers. I will have to have a dig about and see what it is all about. I'm self taught and went straight into Clojure so I can't even read plain Java haha.

flyboarder18:05:19

Ever wanted to use Boot to print ASCII art? There’s a task for that… https://github.com/degree9/boot-welcome

bocaj22:05:01

I'm having trouble getting boot pointed to the correct java. :boot-class-path lists \\jre1.8.0_131\\ (yes I'm on windows 10, sorry.)

bocaj22:05:31

javac -v points to jdk 8 121

bocaj22:05:41

java -v points to jdk 8 121 as well.

bocaj22:05:49

Only after uninstalling every jre does boot find the version i'm expecting so that

boot java
works with javac -version #> javac 1.8.0_121

bocaj22:05:38

Clearly this is a question about how windows and java coordinate, but maybe someone here can explain at what point boot learns about it's java environment?

bocaj23:05:27

Is there a clear route to building a java project with build.boot and pom.xml at the same root?

bocaj23:05:09

ls
#> ./pom.xml
     ./build.boot
     ./src/main/java/(etc)...
 . .