TheCrether opened a new issue, #174: URL: https://github.com/apache/grails-quartz/issues/174
Hello, I am currently upgrading an application from Grails 6 to Grails 7 which uses the grails-quartz plugin. When I created a new Grails 7.2.2 project with the Quartz plugin included, I was not able to start it with `./gradlew bootRun`. The error output can be seen here: [grails-quartz-starter-issue-error.txt](https://github.com/user-attachments/files/30948022/grails-quartz-starter-issue-error.txt) The command I used to create the project is the following: ```bash grails-forge-cli create-app --servlet=tomcat --jdk=17 --gorm=hibernate --reloading=devtools --features=grails-quartz app # same result with since the build.gradle is only minimally different grails -t forge create-app --servlet=tomcat --jdk=17 --gorm=hibernate --reloading=devtools --features=grails-quartz com.grintec.web4sw.swebserver ``` After prompting an LLM multiple times I found that from [3.0.x](https://github.com/apache/grails-quartz/blob/e3e1157b884b97c21350ae6ea01a15e2a7ce77f0/build.gradle#L32) -> 4.0.x the dependency `org.springframework:spring-context-support` was removed. When I added the above dependency explicitly, I was able to start the application. Would it be possible to add the dependency back to build.gradle or put some kind of information into the documentation that this package is needed? (I am not sure how the (transitive) dependencies / BOM etc. are handled in Gradle 7.x.x) Kind regards and thanks in advance -- 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]
