The console displays "Could not find or load main class edu.wpi.first.wpilibj.RobotBase" and the robot code does not start.
This is because the recent change to build.gradle's "dependencies" section to use "implementation" instead of "compile" made the line "from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }" not pickup the dependencies.
Switching back to using "compile" instead of "implementation" should fix it.
The console displays "Could not find or load main class edu.wpi.first.wpilibj.RobotBase" and the robot code does not start.
This is because the recent change to build.gradle's "dependencies" section to use "implementation" instead of "compile" made the line "from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }" not pickup the dependencies.
Switching back to using "compile" instead of "implementation" should fix it.