本文介绍了如何使用grails.plugin.location?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个插件项目,我创建为 code>?它应该是中的插件 p>
It should be like below, if both myPluginDemo and myPlugin are in the same directory. Moreover, this will not install the plugin into the app, but the application will refer to the file system for the plugin which is convenient in development mode. In order to use the packaged plugin it has to be referred in plugins inside grails.project.dependency.resolution
grails.plugin.location.myPlugin = "../myPlugin" grails.project.dependency.resolution = { repositories { } dependencies { } plugins { } }
这篇关于如何使用grails.plugin.location?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!