Hi Maestro, I am trying to download war files from my maven repository. It is hosted in http://car-build-001.abc.com:8081/artifactory/simple/libs-snapshot-local/ $repo = { id => "myrepo", username => "admin", password => "password", url => "http://car-build-001.abc.com:8081/artifactory/simple/libs-snapshot-local/", #mirrorof => "external:*" # if you want to use the repo as a mirror, see maven::settings below } maven { "/tmp/myfile.war": groupid => "com.abc.aus", artifactid => "assess-maven", version => "latest", packaging => "war", #classifier => "sources", repos => $repo, ensure => "latest", } I am probably doing it wrong. Can you please take a look? Thanks!
Hi Maestro,
I am trying to download war files from my maven repository. It is hosted in http://car-build-001.abc.com:8081/artifactory/simple/libs-snapshot-local/
$repo = {
id => "myrepo",
username => "admin",
password => "password",
url => "http://car-build-001.abc.com:8081/artifactory/simple/libs-snapshot-local/",
#mirrorof => "external:*" # if you want to use the repo as a mirror, see maven::settings below
}
maven { "/tmp/myfile.war":
groupid => "com.abc.aus",
artifactid => "assess-maven",
version => "latest",
packaging => "war",
#classifier => "sources",
repos => $repo,
ensure => "latest",
}
I am probably doing it wrong. Can you please take a look?
Thanks!