jdaugherty commented on code in PR #14093:
URL: https://github.com/apache/grails-core/pull/14093#discussion_r2021063248
##########
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:
Looks like ResourceAwareTemplateEngine is used in grails-web-common too. I
suspect we need to revisit the project structure of gsp. It seems like over
time several classes have been pulled up the project chain. I'll take a look
at this after the apache publishing is working.
--
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]