我想访问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的插件,但没有下载依赖项。
有什么建议吗?
答案 0 :(得分:0)
最后,我使用maven构建从maven下载依赖项,我使用&#34; grunt-git&#34;
shell: {
development: {
options: {
stdout: true
},
command: 'mvn clean install -f ./dependencies/pom.xml'
}
我只是运行我的mvn构建,只需将依赖项下载到我想要的目标文件夹。