A CLI wrapper around Sonatype Nexus REST calls.
- Ruby
- Install the Gem
- Create a file in your user's home directory named
.nexus_cli
- Give the file the following information:
url: "http://my-nexus-server/nexus/"
repository: "my-repository-id"
username: "username"
password: "password"
There are two calls that can be made. push_artifact and pull_artifact. Both calls will push or pull artifacts from Nexus using the Maven-flavored syntax: groupId:artifactId:version:extension
nexus-cli pull_artifact com.mycompany.artifacts:myartifact:1.0.0:tgz
nexus-cli push_artifact com.mycompany.artifacts:myartifact:1.0.0:tgz ~/path/to/file/to/push/myartifact.tgz
Author:: Kyle Allan (kallan@riotgames.com)
Copyright:: 2012 Riot Games Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.