-
Notifications
You must be signed in to change notification settings - Fork 3
Description
I'm unable to get this plugin to load in a grails 6.2.3 application.
I built a basic rest-api app with
grails create-restapi example
then added
maven { url "https://jitpack.io" }
to my repositories section.
then
runtimeOnly 'com.github.gpc:grails-web-console:6.0-M2'
(the docs say to use compile
, but I think that's older gradle).
when refreshing gradle I receive the following error:
`A problem occurred configuring project ':example'.
Could not resolve all files for configuration ':example:runtimeClasspath'.
Could not find com.github.gpc:grails-web-console:6.0-M2.
Searched in the following locations:
- https://repo.maven.apache.org/maven2/com/github/gpc/grails-web-console/6.0-M2/grails-web-console-6.0-M2.pom
- https://repo.grails.org/grails/core/com/github/gpc/grails-web-console/6.0-M2/grails-web-console-6.0-M2.pom
- https://jitpack.io/com/github/gpc/grails-web-console/6.0-M2/grails-web-console-6.0-M2.pom`
I can still get the older version to work with runtimeOnly("org.grails.plugins:grails-console:2.1.1")
.
The same issue exists with runtimeOnly 'com.github.grails-plugins:grails-web-console:7.0.0-M1'
Any chance the plugin never actually got published?