Giter VIP home page Giter VIP logo

artifactory's Introduction

artifactory Cookbook

Downloads artifacts from an Artifactory instance. It's usage is very similar to the maven cookbook provided by OpsCode. User provides artifact GAVC coordinates, the provider resolves them against Artifactory and eventually uses a remote file resource to fetch locally.

Requirements

None.

Attributes

See attributes/default.rb for default values.

  • default["artifactory"]["url"] - the url to the artifactory server, e.g. http://artifactory.example.com:8081/artifactory. Required. The provider handles the presence or absence of a trailing slash gracefully.
  • default["artifactory"]["repository"] - repository to resolve artifacts from. Defaults to "internal".

Usage

Make sure you override the artifactory url first. Also make sure the repository matches yours. Then:

artifactory "artifact-id" do
  group_id "groupid"
  version "~> 1.0.0"
  classifier "sources" # optional, defaults to nil
  packaging "war" # defaults to jar
  dest "file_path_destination"
  action :put
end
  • If the destination path is a folder, then the artifact will be created as DEST_PATH/artifact_id.packaging. For example:
artifactory "artifact-id" do
  group_id "groupid"
  version "1.0.42"
  classifier "sources" # optional, defaults to nil
  packaging "war" # defaults to jar
  dest "/var/lib/tomcat7/webapps"
  action :put
end

will create /var/lib/tomcat7/webapps/artifact-id.war

  • If the destination path is an existing file, then the artifact will be created as DEST_PATH (overwrites it).

License and Authors

Authors: Olivier Larivain

artifactory's People

Contributors

olarivain avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.