Last active
February 3, 2017 05:19
-
-
Save ddgenome/ffe07c635ce8aec8eb6fc731459c7764 to your computer and use it in GitHub Desktop.
Rug CLI configuration for publishing Rug archives
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Set up the path to the local repository | |
local-repository: | |
path: "${user.home}/.atomist/repository" | |
# Set up remote repositories to query for Rug archives. Additionally one of the | |
# repositories can also be enabled for publication (publish: true). | |
remote-repositories: | |
maven-central: | |
publish: false | |
url: "http://repo.maven.apache.org/maven2/" | |
rug-types: | |
publish: false | |
url: "https://atomist.jfrog.io/atomist/libs-release" | |
rugs: | |
publish: false | |
url: "https://atomist.jfrog.io/atomist/rugs-release" | |
my-rugs: | |
publish: true | |
url: "https://my.jfrog.io/my/rugs-release" | |
authentication: | |
username: "${MAVEN_USER}" | |
password: "${MAVEN_TOKEN}" | |
# Set up Rug catalog endpoints for searching | |
catalogs: | |
- "https://api.atomist.com/catalog" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment