Reputation: 7556
I created simple grails 3.0 applications using commands below:
Now, I wanted to use core as an inline plugin in admin build, which is a web application.
We can easily do that in grails version < 3.0 in buildconfig. Where can I do that in grails 3.0. Every help is worth appreciated.
Upvotes: 2
Views: 1085
Reputation: 1904
Recently I used an inline plugin in my grails 3 application. here is how I did it-
compile project(':plugin_name')
include 'plugin_name'
project(':plugin_name').projectDir = new File('absolute_path_of_pluin')
Upvotes: 8
Reputation: 7985
Inplace plugins have been replaced by multi project Gradle builds. See the Grails 3 functional test suite for an example https://github.com/grails/grails3-functional-tests
Upvotes: 2