Gradle build: bootstrap class path not set in conjunction with -source 1.7
Building of a Gradle project yields the following warning: :compileJavawarning: [options] bootstrap class path not set in conjunction with -source 1.7 1 warning That happens whenever the project is compiled to be compatible with an older Java version compared to the installed JDK (Java 8 in my case). build.gradle apply plugin: ‘java’ sourceCompatibility = 1.7 … The warning…