Skip to content

Instantly share code, notes, and snippets.

@dxxxxy
Last active August 10, 2022 01:57
Show Gist options
  • Select an option

  • Save dxxxxy/fd5c1a6cb0104ad8f5a1b94d1179b07b to your computer and use it in GitHub Desktop.

Select an option

Save dxxxxy/fd5c1a6cb0104ad8f5a1b94d1179b07b to your computer and use it in GitHub Desktop.
A gist of common errors that can be encountered when using Hephaestus. -dxxxxy

Hephaestus Common Errors

A gist of common errors that can be encountered when using Hephaestus.

Pre-requirements (MUST HAVE INSTALLED)

  • Heroku CLI (after you install login yourself using heroku login)
  • Git

Git Errors:

Coming soon...

Heroku Errors:

Coming soon...

Gradle Errors:

Could not execute build using connection to Gradle distribution 'https://services.gradle.org/distributions/gradle-3.1-bin.zip'.

or

Could not create an instance of Tooling API implementation using the specified Gradle distribution 'https://services.gradle.org/distributions/gradle-3.1-bin.zip'.

This is a common problem when using Gradle and is the result of a badly configured Java install.

Make sure that:

  • You have more than 4GB of RAM CURRENTLY AVAILABLE on your machine. (solves Invalid Maximum Heap Size
  • You are using a 64-bit Java JDK. (solves Invalid Maximum Heap Size)
  • You are using Java 8, not lower nor higher. (MUST HAVE FOR GRADLE 3.1)
  • You are using the official Java JDK from Oracle. (solves Unable to make protected java.lang.Package[])
  • Your environment variables are set correctly. (solves Perhaps JAVA_HOME does not point to the JDK.)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment