removeDependentsFromArtifactVersion

Back to index

Summary

Removes a list of dependent artifact versions from an existing artifact version.
artifactVersionName
Stringrequired
The name of the artifactVersion.
dependentArtifactVersions
Collectionoptional
List of dependent artifactVersions to add/remove from the artifactVersion.

Usage

Perl

$cmdr->removeDependentsFromArtifactVersion( "test-artifactVersionName" # artifactVersionName # optionals );

ectool

ectool removeDependentsFromArtifactVersion \ "test-artifactVersionName" `# artifactVersionName` \ # optionals

Examples

Perl

# Note: In the Perl API, the argument must be specified as singular # even though it can take multiple values. $cmdr->removeDependentsFromArtifactVersion(myGroup:myKey:1.0.0-55, {dependentArtifactVersion => ["cmdr:onlineHelp:1.0.0"});

ectool

ectool removeDependentsFromArtifactVersion myGroup:myKey:1.0.0-55 --dependentArtifactVersions "cmdr"onlineHelp:1.0.0"