I have a Grails Project with name AProject and a Grails Plugin with name MyPlugin.
I integrate my MyPlugin into AProject, by adding to BuildConfig.groovy
as:
plugins {
...
compile ":elasticsearch:0.50"
}
grails.plugin.location.'elasticsearch' = "../elasticsearch"
On my local computer I then do in the MyPlugin folder
grails maven-install
and in the AProject folder:
grails clean
grails refresh-dependencies
grails run-app
This is working fine on my local computer, but not on my server.
How can I integrate a Grails plugin project on my server?