Open tahakonuk opened 6 years ago
Hi, it's been a long time since this problem, but I still want to suggest a solution. Changing the system language to english was the solution for me.
Thank you @fyalcincosar. I can't remember but my system language may not be English at that time.
thank you @yalcincosar . this solved my problem.
Hello, I'm using default gradle wrapper in Intellij IDEA CE 2018.1
When I start the appStart task of gretty I get the error :
Caused by: groovy.lang.MissingMethodException: No signature of method: static org.akhikhl.gretty.ProjectUtils.getClassPath() is applicable for argument types: (org.gradle.api.internal.project.DefaultProject_Decorated, null, java.lang.String) values: [project ':myProject', null, runtime]
My projects directory structure is different from the default one expected by gradle. I checked the gretty source code and the exception comes from;
gretty/libs/gretty/src/main/groovy/org/akhikhl/gretty/StartBaseTask.groovy:212
resolvedClassPath.addAll(ProjectUtils.getClassPath(proj, wconfig.inplace, runtimeConfig))
The
wconfig.inplace
part returns null. Do I need to set something in mybuild.gradle
or is this a bug? Contents of my file:Thanks in advance