grails / grails-database-migration

Grails® framework Database Migration Plugin
Apache License 2.0
98 stars 115 forks source link

Fix missing dependency problems by changing the scope from implementa… #235

Closed puneetbehl closed 2 years ago

puneetbehl commented 2 years ago

…tion to compileOnly

The buildsciprt does not resolve dependency version from the Grails BOM, so but defining the dependency scope as implementation add information to the POM without version which breaks when add the plugin to build dependency. Changing the scope to compileOnly will skip dependency from POM which will resolve imissing dependency errors.

Fixes #229