GrailsClasspath "No builders" error when running grails run-app

When running grails run-app the following error appears:

| Error Error initializing classpath: No builders are available to build a model of type 'org.grails.gradle.plugin.model.GrailsClasspath'. (Use --stacktrace to see the full trace)

      

Anyone ideas?

+3


source to share


2 answers


This issue is currently being logged as an unsolved issue: https://jira.grails.org/browse/GRAILS-12079



I see this same problem with both grails 3.0.11 and 3.1.1. I was able to work around this for my project by installing grails 2.4.5 then running grails set-grails-version 2.4.5

.

0


source


I had a problem when I took an existing Grails project. This grails project was listed as 3.0, but actually had a lot of references to 2.5 in the build.gradle file



Requires changes to gradle config to run. To find you on the way: create a new app somewhere and compare your gradle config between 2

0


source







All Articles