-
Notifications
You must be signed in to change notification settings - Fork 1.9k
build instructions? #291
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
Comments
This is regular gradle build. You can use Just make sure you have a valid |
The original issue was caused by However:
|
"Could not start 'null/bin/java'" is a typical issue happening when JAVA_HOME is not set. # Find the JDK
find /usr/lib/jvm/java-1.x.x-openjdk
# Set JAVA_HOME
export JAVA_HOME="path to the jdk"
# Verify (should print the path to the jdk)
echo $JAVA_HOME
# Try again
./gradlew build |
Forgot to mention I verified JAVA_HOME was set:
|
This fails as well:
|
What does |
Use this FROM openjdk:8
WORKDIR /home
RUN git clone https://github.com/Kotlin/kotlinx.coroutines .
RUN ./gradlew build -x test Error:
See
|
Btw, |
skipping |
So yes, I agree the readme should tell to define |
So 1.6 is needed in addition to the default/target jdk? Or why not skip the
only 1.6 test if not defined and maybe print a msg saying it's skipped
|
Here's a pull request: #294 |
Why running gradle with
|
While |
No, there is no reason to execute (Please reopen this issue) |
Gradle is failing during its config phase where it tries to create tasks (and their properties). I've created a new pull request to fail if JDK_16 is not set. #296 |
Switch dependency fix the issue -build.dependsOn moreTest
+test.dependsOn moreTest
|
Can you please add building instructions? There's a lot of inter project dependencies (e.g. swing depends on jvm8).
The text was updated successfully, but these errors were encountered: