7 lines
299 B
PowerShell
7 lines
299 B
PowerShell
# Usage: .\download-maven-alfresco-private.ps1 org/maven/group/path maven-artifact-id 1.2.3 jar a_username a_password
|
|
$THISDIR=$PSScriptRoot
|
|
|
|
$MAVEN_BASEURL="https://artifacts.alfresco.com/nexus/content/groups/private"
|
|
|
|
Invoke-Expression "& '${THISDIR}\download-maven.ps1' '${MAVEN_BASEURL}' $args"
|