wu452148993 / wurst

8 stars 2 forks source link

build failed #1

Closed RooflOmg closed 1 year ago

RooflOmg commented 3 years ago

To honour the JVM settings for this build a new JVM will be forked. Please consider using the daemon: https://docs.gradle.org/4.10.3/userguide/gradle_daemon.html. Daemon will be stopped at the end of the build stopping after processing

FAILURE: Build failed with an exception.

BUILD FAILED in 18s

Glitch-Codes commented 3 years ago

Please see my fork for updated repo links that fix this error

wu452148993 commented 3 years ago

Sorry, there are many things I have forgotten about this project recently

wu452148993 commented 3 years ago

PKIX path building failed is SSL ERROR.You can refer to the following plan: (source:https://stackoverflow.com/questions/9619030/resolving-javax-net-ssl-sslhandshakeexception-sun-security-validator-validatore)

You need to add the certificate for these websites to the truststore file of the used JVM located at %JAVA_HOME%\lib\security\cacerts.

First you can check if your certificate is already in the truststore by running the following command: keytool -list -keystore "%JAVA_HOME%/jre/lib/security/cacerts" (you don't need to provide a password)

If your certificate is missing, you can get it by downloading it with your browser and add it to the truststore with the following command:

keytool -import -noprompt -trustcacerts -alias -file -keystore -storepass

Example: keytool -import -noprompt -trustcacerts -alias myFancyAlias -file /path/to/my/cert/myCert.cer -keystore /path/to/my/jdk/jre/lib/security/cacerts/keystore.jks -storepass changeit

After import you can run the first command again to check if your certificate was added.

Sun/Oracle information can be found here:https://docs.oracle.com/javase/tutorial/security/toolsign/rstep2.html