I am trying to build the example Java program from “http://frcvision.local/”. when I build it I am getting an error message * What went wrong: Could not determine java version from ‘11.0.1’. Anyone have the same issue ?
What command are you running to build? Are you running gradle build
or gradlew build
? If the first one, try the 2nd one as you might have an old version of Gradle installed locally on your machine, which is what the first one is calling.
@Thad_House I am using gradlew build to build it. I just found this post , and update gradle to 5.1 as well and seems to work. But now it is running into this “Could not create service of type ScriptPluginFactory using BuildScopeServices.createScriptPluginFactory()”
Thanks for your help!!
Make sure you install JDK 11 and set that under JAVA_HOME
Yep, i did thanks for the help