add doc on querying artifacts
Project: http://git-wip-us.apache.org/repos/asf/archiva/repo Commit: http://git-wip-us.apache.org/repos/asf/archiva/commit/9254faf5 Tree: http://git-wip-us.apache.org/repos/asf/archiva/tree/9254faf5 Diff: http://git-wip-us.apache.org/repos/asf/archiva/diff/9254faf5 Branch: refs/heads/master Commit: 9254faf5549f5b7d3c150a70b8b29093efc3fe51 Parents: 0c689f9 Author: Olivier Lamy <[email protected]> Authored: Wed May 21 15:21:44 2014 +1000 Committer: Olivier Lamy <[email protected]> Committed: Wed May 21 15:21:44 2014 +1000 ---------------------------------------------------------------------- .../site/apt/userguide/querying-artifacts.apt | 51 ++++++++++++++++++++ archiva-docs/src/site/site.xml | 1 + 2 files changed, 52 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/archiva/blob/9254faf5/archiva-docs/src/site/apt/userguide/querying-artifacts.apt ---------------------------------------------------------------------- diff --git a/archiva-docs/src/site/apt/userguide/querying-artifacts.apt b/archiva-docs/src/site/apt/userguide/querying-artifacts.apt new file mode 100644 index 0000000..05dacc3 --- /dev/null +++ b/archiva-docs/src/site/apt/userguide/querying-artifacts.apt @@ -0,0 +1,51 @@ + ------ + Querying Artifacts + ------ + Olivier Lamy + ------ + 2014-05-21 + ------ + +~~ Licensed to the Apache Software Foundation (ASF) under one +~~ or more contributor license agreements. See the NOTICE file +~~ distributed with this work for additional information +~~ regarding copyright ownership. The ASF licenses this file +~~ to you 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. + +~~ NOTE: For help with the syntax of this file, see: +~~ http://maven.apache.org/guides/mini/guide-apt-format.html + + +Querying Artifacts + + Sometimes you only need to download artifacts using a query and via the command line + +* Query format + ++------------------ + wget "http://localhost:9091/archiva/restServices/archivaServices/searchService/artifact?g=org.apache.archiva&a=archiva-model&v=LATEST" ++------------------ + + Query parameters: + + * g= groupId (mandatory) + + * a= artifactId (mandatory) + + * v= the version (or LATEST keyword) (mandatory) + + * r= the repository (optional, if none all repositories available for reading for the current user are searched) + + + http://git-wip-us.apache.org/repos/asf/archiva/blob/9254faf5/archiva-docs/src/site/site.xml ---------------------------------------------------------------------- diff --git a/archiva-docs/src/site/site.xml b/archiva-docs/src/site/site.xml index 1467a0e..e0d532c 100644 --- a/archiva-docs/src/site/site.xml +++ b/archiva-docs/src/site/site.xml @@ -79,6 +79,7 @@ <item name="Deploying to repository" href="/userguide/deploy.html" /> <item name="Configuring Virtual Repositories" href="/userguide/virtual-repositories.html" /> <item name="Rss Feeds in Archiva" href="/userguide/rss.html"/> + <item name="Querying Artifacts" href="/userguide/querying-artifacts.html"/> <!-- not yet in new UI --> <!--item name="Audit Log Report" href="/userguide/auditlog-report.html"/--> </menu>
