bkoehm opened a new issue, #14718:
URL: https://github.com/apache/grails-core/issues/14718
I have a plugin that I'm converting to Grails 7 which has a controller in
it. I had to add `org.apache.grails:grails-controllers` as a dependency to my
`build.gradle` to get my controller to work. @jdaugherty thinks perhaps that
dependency should have been included already via one of the other dependencies
I had. But it's entirely possible I just didn't have the right dependencies
listed in the first place, so if that's the case, feel free to close this as a
"not a bug",
Dependencies that I had listed where my controller didn't work:
```
implementation "org.springframework.boot:spring-boot-starter-logging"
implementation "org.apache.grails:grails-core"
implementation "org.apache.grails:grails-web-boot"
implementation "org.apache.grails:grails-cache"
implementation "org.apache.grails:grails-converters"
console "org.apache.grails:grails-console"
profile "org.apache.grails.profiles:web-plugin"
implementation "org.apache.grails:grails-services"
```
I added this and controller started working:
```
implementation "org.apache.grails:grails-controllers"
```
Using grails-core built at commit 9fef7c0f3269d10998439e1eed2bb564020840fb
(May 2).
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]