problem about gradle-eclipse-Collection of common programming errors
Aleksandr M
java-ee thymeleaf gradle-eclipse
The exception is system Cannot find System Java Compiler. Ensure that you have installed a JDK (not just a JRE) and configured your JAVA_HOME system variable to point to the according directory. Could not execute build using Gradle installation ‘C:\gradle-1.2-all\gradle-1.2’.But I have installed jdk1.7 and set the environment variable also.
Chingy
java gradle dependency-management build-gradle gradle-eclipse
So I have tried to add my local .jar file dependency to my build.gradle file:apply plugin: ‘java’sourceSets {main {java {srcDir ‘src/model’}} }dependencies {runtime files(‘libs/mnist-tools.jar’, ‘libs/gson-2.2.4.jar’)runtime fileTree(dir: ‘libs’, include: ‘*.jar’) } And you can see that I added the .jar files into the lib folder here: https://github.com/quinnliu/WalnutiQ/tree/master/libsBut the problem is that when I run the command: gradle build on the command line I get the following error:err
Web site is in building