alexradzin / aerospike-jdbc-driver

JDBC driver for Aerospike
Apache License 2.0
12 stars 3 forks source link

Can't build on Wiondows 10 #4

Closed artem-pdus closed 4 years ago

artem-pdus commented 4 years ago

Is there any way to publish compiled JAR? as building on windows is a bit tricky, already spent an hour to figure out which version of JDK and JRE it requires.

c:\temp\aerospike-jdbc-driver>gradlew build

FAILURE: Build failed with an exception.

BUILD FAILED in 1s 1 actionable task: 1 executed

alexradzin commented 4 years ago

Thank you for reporting. It seems that your JAVA_HOME points to JRE. You need JDK to compile java applications. Please try to install JDK and run build again.

Anyway I will try to build the code on windows ASAP.

Right now you can download binaries from here: https://drive.google.com/file/d/1jF1jKHEFsry5xt_QTQRhMOm785eJ4JeZ/view?usp=sharing https://drive.google.com/file/d/1W9C7ubbjFnnYNvKqPWD1A1DwSC55REm1/view?usp=sharing

alexradzin commented 4 years ago

Here is the evidence that my assumption is true: https://github.com/synthetichealth/synthea/issues/575 You need JDK to compile java code. JRE does not contain java compiler. So, I am closing the issue.

artem-pdus commented 4 years ago

Thank you very much, I was able to download the binaries, however, SQL execution is not 100% working I'll describe that in the separate issue.