Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/grails/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何使用STS Eclipse将下载的插件添加到grails项目中_Eclipse_Grails_Grails Plugin - Fatal编程技术网

如何使用STS Eclipse将下载的插件添加到grails项目中

如何使用STS Eclipse将下载的插件添加到grails项目中,eclipse,grails,grails-plugin,Eclipse,Grails,Grails Plugin,我想知道,有没有办法像我们在intellj ide(添加自定义插件)中那样使用STS(Sprint工具套件)将下载的插件添加到项目中 例如,我下载了jasper插件,如何将其添加到grail项目中 提前感谢在BuildConfig.groovy文件中,您可以添加插件 将以下内容合并到grails.project.dependency.resolution闭包中: 感谢您的回复,我这样做只是为了在我的grails应用程序中添加插件,但是我们没有办法在诸如netbeans或intellj之类的STS

我想知道,有没有办法像我们在intellj ide(添加自定义插件)中那样使用STS(Sprint工具套件)将下载的插件添加到项目中

例如,我下载了jasper插件,如何将其添加到grail项目中

提前感谢

在BuildConfig.groovy文件中,您可以添加插件

将以下内容合并到grails.project.dependency.resolution闭包中:


感谢您的回复,我这样做只是为了在我的grails应用程序中添加插件,但是我们没有办法在诸如netbeans或intellj之类的STS中手动添加插件。现在推荐的安装插件的方法是上面的方法,而不是使用grails安装插件,这正是IDE正在做的。
repositories{
  mavenRepo "https://repository.jboss.org/nexus/"
}

plugins {
 compile ":jasper:1.5.3"
}