我正在使用自定义存储库进行本地开发(Artifactory),并且需要任何登录信息。在.m2 / settings.xml文件中设置用户名和加密密码,并在项目的pom.xml中定义存储库服务器时,此方法很好用。
使用mvn dependency:get
作为remoteRepositories属性列出服务器URL而不是服务器ID时,我无法使用它。
我当前使用的命令是
mvn org.apache.maven.plugins:maven-dependency-plugin:3.1.1:get -DremoteRepositories=https://artifactory.example.com/artifactory/repo -Dartifact=com.example.parent:parent:1
是否可以通过某种方式将服务器ID值放入mvn命令的命令行中,或者在settings.xml文件中查找服务器URL?