abbas
abbas

Reputation: 1

grails - how can you force update a sub-dependency

Due to a security issue with org.codehaus.groovy:groovy-all i need to update it within a grails project. the issue is that it is being used by org.grails:grails-bootstrap and i am unable to update that, because it is never explicitly imported in my buildconfig.groovy file.

grails-bootstrap is currently importing org.codehaus.groovy:groovy-all:2.3.6 and i need it to use org.codehaus.groovy:groovy-all:2.4.13

is there any way to update only the sub-dependency? is there any way to force a new version of org.grails:grails-bootstrap.

any help would be appreciated.

edit: i am on grails version 2.4.3 and dont want to make the upgrade to 3.x.x

Upvotes: 0

Views: 403

Answers (1)

Jeff Scott Brown
Jeff Scott Brown

Reputation: 27245

You can add an explicit dependency in BuildConfig.groovy.

Upvotes: 1

Related Questions