Skip to content

Commit

Permalink
Update dependencies of grace-web-jsp
Browse files Browse the repository at this point in the history
Closes gh-889

See gh-681 gh-885
  • Loading branch information
rainboyan committed Jan 7, 2025
1 parent 6d4aa2d commit 3e7c431
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
1 change: 1 addition & 0 deletions grace-test-support/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ dependencies {

api libs.grails.async.core
api project(":grace-plugin-gsp")
api project(":grace-web-gsp")
api libs.groovy.test.junit5
api libs.grails.datastore.gorm
api libs.grails.datastore.gorm.test
Expand Down
8 changes: 7 additions & 1 deletion grace-web-gsp-taglib/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
dependencies {
compileOnlyApi libs.jakarta.servlet
api project(':grace-web-jsp')
compileOnlyApi libs.sitemesh, {
exclude group: 'jakarta.servlet', module: 'jakarta.servlet-api'
}
api project(':grace-gsp')
api project(':grace-taglib')
api project(':grace-web-gsp')
api project(':grace-web-taglib')
}
13 changes: 9 additions & 4 deletions grace-web-jsp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,13 @@ dependencies {

compileOnlyApi libs.jakarta.servlet
// Required for JSP support
implementation libs.jakarta.servlet.jsp
implementation libs.jakarta.servlet.jsp.jstl
implementation libs.jakarta.el
implementation libs.glassfish.web.jsp.jstl
compileOnlyApi libs.jakarta.el
compileOnlyApi libs.jakarta.servlet.jsp, {
exclude group: 'jakarta.servlet', module: 'jakarta.servlet-api'
}
compileOnlyApi libs.jakarta.servlet.jsp.jstl, {
exclude group: 'jakarta.el', module: 'jakarta.el-api'
exclude group: 'jakarta.servlet', module: 'jakarta.servlet-api'
}
compileOnly libs.glassfish.web.jsp.jstl
}

0 comments on commit 3e7c431

Please sign in to comment.