Install into local maven repo (or wherever you want to):
grails maven install --binary
Then, you have include your plugin as a dependency for your grails app:
BuildConfig.groovy:
dependencies { //Since it is binary plugin is goes here instead of in the 'plugins' section compile 'com.nortia.book:book-remote:0.1' }
That's it! :D
PD: There is no need for the plugin to be 'binary' unless you're planning to use those domains in another groovy (no grails) project (which was my case).
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Lo que pedía el cuerpo era hacer un intento para incluir Gorm en un ejemplo sencillo de Griffon.
El código completo esta en el siguiente repo (https://github.com/ivanarrizabalaga/BookGorm), y las partes relevantes son: