0

我想访问 Maven 并下载我在 pom.xml 中的 1 个依赖项

    <artifactId>id</artifactId>
  <packaging>pom</packaging>
  <name>lorep ipsum</name>

  <parent>
    <groupId>com.whatever.client</groupId>
    <artifactId>client-parent</artifactId>
    <version>2.0</version>
  </parent>

  <dependencies>
    <dependency>
      <groupId>com.cubeia.firebase.client</groupId>
      <artifactId>firebase-js-api</artifactId>
      <classifier>javascript</classifier>
      <type>js</type>
    </dependency>


  </dependencies>

是否有任何插件可以访问 maven 存储库,或者我应该通过 node-js 编写它?我知道有插件可以部署和发布到 Maven,但没有下载依赖项。

有什么建议吗?

4

1 回答 1

0

最后,我使用我使用“grunt-git”调用的 maven 构建从 maven 下载依赖项

shell: {
            development: {
                options: {
                    stdout: true
                },
                command: 'mvn clean install -f ./dependencies/pom.xml'                    
        }

我只是运行我的 mvn 构建,只需将依赖项下载到我想要的目标文件夹。

于 2013-10-04T09:18:42.460 回答