0

我正在尝试将插件的依赖项添加到我的 grails 应用程序中,但它在 grails 存储库中没有任何插件。它可以添加到 maven 项目中:

<dependency>
  <groupId>com.plaid</groupId>
  <artifactId>plaid-java</artifactId>
  <version>0.2.12</version>
</dependency>

因为我的项目也是基于 Maven 的。如何将此插件添加到我的项目中。

PS : IT 不能添加到插件和依赖项中,因为没有与之关联的 grails 插件。

任何帮助表示赞赏。

4

2 回答 2

1

您可以使用create-pom org.mycompany创建pom.xml文件来让 grails 读取您需要在BuildConfig.groovy中设置的pom.xml这段代码

 grails.project.dependency.resolution = {
   /*YOUR CONFIG*/
   pom true
   repositories {
     /*YOUR RESPOSITORIES*/
   }
}

然后你需要在这个pom.xml中添加你的依赖

你可以看官方文档。在这个链接

于 2016-06-08T07:54:15.090 回答
1

dependencies{}我们可以在 BuildConfig.groovy下为 grails 中的任何插件添加依赖项,如下所示:

<groupId>:<artifactId>[:<extension>[:<classifier>]]:<version>

对于您的情况,等效于:

<dependency>
  <groupId>com.plaid</groupId>
  <artifactId>plaid-java</artifactId>
  <version>0.2.12</version>
</dependency>

是:

dependencies{
      compile "com.plaid:plaid-java:0.2.12"
}

有关更多信息,您可以查看http://docs.grails.org/2.3.1/guide/conf.html

于 2016-06-22T17:11:27.717 回答