How to fix error with gradle appStart java web -


i have error starting gradle daemon (subsequent builds faster) exception in thread "thread-23" org.gradle.process.internal.execexception: problem occurred starting process 'command '/library/java/javavirtualmachines/jdk1.8.0_131.jdk/contents/home/bin/java''

when try run java web jroject gradle use gradle appstart

my build.gradle file

    buildscript {     repositories {         jcenter()     }     dependencies {         classpath 'org.akhikhl.gretty:gretty:+'     } }  apply plugin: 'java' apply plugin: 'war' apply plugin: 'org.akhikhl.gretty'  gretty {     httpport = 8080     contextpath = '/'     servletcontainer = 'jetty9' }  sourcecompatibility = '1.8' targetcompatibility = '1.8'  repositories {     mavencentral() }   dependencies {     compile (             'org.springframework:spring-webmvc:4.1.5.release',             'org.slf4j:slf4j-api:1.7.10'     )     providedcompile(             'javax.servlet:javax.servlet-api:3.1.0',     )     runtime(             'log4j:log4j:1.2.17',             'org.slf4j:jcl-over-slf4j:1.7.10',             'org.slf4j:slf4j-log4j12:1.7.10'     )     testcompile(             'junit:junit:4.12',             'org.springframework:spring-test:4.1.5.release'     ) } 

how fix please help. gradle version 4.1

jdk version 8 os mac

jdk ofcouse exit


Comments

Popular posts from this blog

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

php - "cURL error 28: Resolving timed out" on Wordpress on Azure App Service on Linux -