gradle-retrolambda icon indicating copy to clipboard operation
gradle-retrolambda copied to clipboard

Symbol$CompletionFailure

Open xhoogland opened this issue 8 years ago • 0 comments

:relay-library:generateReleaseBuildConfig UP-TO-DATE :relay-library:mergeReleaseResources UP-TO-DATE :relay-library:processReleaseResources UP-TO-DATE :relay-library:generateReleaseSources UP-TO-DATE :relay-library:incrementalReleaseJavaCompilationSafeguard UP-TO-DATE :relay-library:compileReleaseJavaWithJavac An exception has occurred in the compiler (1.8.0_121). Please file a bug against the Java compiler via the Java bug reporting page (http://bugreport.java.com) after checking the Bug Database (http://bugs.java.com) for duplicates. Include your program and the following diagnostic in your report. Thank you. com.sun.tools.javac.code.Symbol$CompletionFailure: class file for java.lang.invoke.MethodType not found :relay-library:compileReleaseJavaWithJavac FAILED

FAILURE: Build failed with an exception.

  • What went wrong: Execution failed for task ':relay-library:compileReleaseJavaWithJavac'.

Compilation failed; see the compiler error output for details.

  • Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

BUILD FAILED

Is the message I receive, my build.gradle in the root is:

// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { jcenter() } dependencies { classpath 'com.android.tools.build:gradle:2.2.3' } }

plugins { id "me.tatarka.retrolambda" version "3.5.0" }

allprojects { buildscript { repositories { jcenter() maven { url "https://jitpack.io" } } } }

I have only JRE and JDK 8 installed on this machine. What am I missing more?

xhoogland avatar Feb 07 '17 01:02 xhoogland