-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Help running gradle build #98
Comments
Which Java version are you using which leads to this For the second stack trace, what is the output of |
I've managed to get the ./gradlew script to run with Java 11 (on Mac Monterey) but I get the error I received previously using the system provided gradle (The server may not support the client's requested TLS protocol versions). What version of the JVM do you use to build successfully? Thanks. |
I also get the TLS error using Ubuntu and Java 8. Thanks. |
The library itself requires Java 8+ at the moment but I am also usually building using JDK 11.
Thanks. Same question as above, which version of Ubuntu and Gradle? While investigating this issue, I noticed that JDK 17 is not working with the version of Gradle supplied in the wrapper so I'll probably open a PR to upgrade this anyways. |
Ubuntu 20.04.5 LTS and Gradle 6 gives the TLS error using both Java 8 and Java 11. |
@joshua-gould thanks for the additional information. Re system Gradle, I tried reproducing your issue with the following Docker environment but I could not reproduce the issue you are seeing FROM ubuntu:20.04
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt install -yqq default-jdk gradle git
RUN git clone https://github.com/glencoesoftware/raw2ometiff /tmp/raw2ometiff
WORKDIR /tmp/raw2ometiff
ENTRYPOINT ["gradle"] Is there any key store set-up in your environment and configured via the Most importantly, the Gradle wrapper is the main build workflow we are supporting for these utilities at the moment. From the above, I understand this approach is correctly working for you with JDK 11. Do you still have a configuration where |
Closing in the absence of further information, as the Gradle wrapper should work as previously indicated. Feel free to re-open if there is a scenario where |
Tried using ./gradlew script and system installed gradle. Thanks.
The text was updated successfully, but these errors were encountered: