matrei commented on code in PR #14093:
URL: https://github.com/apache/grails-core/pull/14093#discussion_r2021052175
##########
grails-web/build.gradle:
##########
@@ -1,8 +1,54 @@
+plugins {
+ id 'groovy'
+ id 'java-library'
+ id 'project-report'
+}
+
+version = projectVersion
+group = 'org.grails'
+
dependencies {
+
+ implementation platform(project(':grails-bom'))
+
api project(":grails-web-common")
api project(":grails-web-databinding")
api project(":grails-web-url-mappings")
api project(":grails-web-mvc")
+ api "org.apache.groovy:groovy:$groovyVersion"
api "org.grails:grails-web-gsp"
Review Comment:
`grails-web-gsp` is in fact not used in `grails-web` and can be removed
(unless some downstream project depends on `grails-web` providing it, which we
know is a bad idea).
It seems `grails-plugin-mimetypes` is using
`org.grails.gsp.ResourceAwareTemplateEngine` and it's sole dependency is
`grails-web`.
--
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]