dependency:get是一個插件
全名是: org.apache.maven.plugins:maven-dependency-plugin:3.1.2:get
可選參數(等號右邊改為實參):
-Dartifact=groupId:artifactId:version[:packaging[:classifier]] (等於是下面的幾個參數組合寫在一起)
-DgroupId=groupId
-DartifactId=artifactId
-Dversion=version
-Dpackaging=packaging
-Dclassifier=classifier (表示在相同版本下針對不同的環境或者jdk使用的jar, 用於進一步限定)
-DremoteRepositories=id::[layout]::url(或者僅寫url, 多個倉庫源用逗號分隔, 例如 central::default::https://repo.maven.apache.org/maven2,myrepo::::https://repo.acme.com,https://repo.acme2.com)
-Dtransitive=true | false (是否下載傳遞的依賴jar, 默認true)
-Dskip=false | true (是否跳過插件的執行, 默認false)
