我想访问 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,但没有下载依赖项。
有什么建议吗?