All Projects → cescoffier → Puppet Nexus

cescoffier / Puppet Nexus

A Puppet Module for Nexus (Maven)

Labels

Projects that are alternatives of or similar to Puppet Nexus

Puppet Nginx
[UNMAINTAINED] Puppet Nginx module
Stars: ✭ 40 (-36.51%)
Mutual labels:  puppet
Creature unity
2D Skeletal Animation Unity Runtimes for Creature
Stars: ✭ 50 (-20.63%)
Mutual labels:  puppet
Stagr
Staging Server installer for Fortrabbit
Stars: ✭ 56 (-11.11%)
Mutual labels:  puppet
Vagrant Magento Hhvm
A vagrant configuration for getting a basic version of Magento with HHVM up and running.
Stars: ✭ 41 (-34.92%)
Mutual labels:  puppet
Phalcon Vm
Vagrant configuration for PHP7, Phalcon 3.x and Zephir development.
Stars: ✭ 43 (-31.75%)
Mutual labels:  puppet
Puppet Selinux
Puppet Module to manage SELinux on RHEL machines
Stars: ✭ 51 (-19.05%)
Mutual labels:  puppet
Puppet Redis
Puppet Module to manage Redis
Stars: ✭ 37 (-41.27%)
Mutual labels:  puppet
Puppetlabs Dsc
Puppet module for PowerShell Desired State Configuration (DSC) integration
Stars: ✭ 63 (+0%)
Mutual labels:  puppet
Cmits
Configuration Management for IT Systems
Stars: ✭ 49 (-22.22%)
Mutual labels:  puppet
Puppet Filebeat
Stars: ✭ 54 (-14.29%)
Mutual labels:  puppet
Puppet Puppetboard
Puppet module to install and manage puppetboard
Stars: ✭ 42 (-33.33%)
Mutual labels:  puppet
Puppet Apache
Apache Puppet Module
Stars: ✭ 42 (-33.33%)
Mutual labels:  puppet
Wordpress
Stars: ✭ 52 (-17.46%)
Mutual labels:  puppet
Userplex
Propagate users from Mozilla's Person API to third party systems.
Stars: ✭ 41 (-34.92%)
Mutual labels:  puppet
Vagrant Graphite
An Example puppetized setup of grahpite, jmxtrans, collectd , logster
Stars: ✭ 58 (-7.94%)
Mutual labels:  puppet
Puppet Hadoop
Hadopp Module For Puppet.
Stars: ✭ 40 (-36.51%)
Mutual labels:  puppet
Puppet Staging
⛔️ Deprecated in favor of puppet-archive
Stars: ✭ 50 (-20.63%)
Mutual labels:  puppet
Biemond Orawls
Puppet 3/4 module for WebLogic provisioning module ( Linux & Solaris )
Stars: ✭ 63 (+0%)
Mutual labels:  puppet
Puppet Foreman
UNOFFICIAL CLONE use https://github.com/theforeman/foreman-installer
Stars: ✭ 58 (-7.94%)
Mutual labels:  puppet
Puppet Nginx
Basic module for configuring nginx via puppet
Stars: ✭ 53 (-15.87%)
Mutual labels:  puppet

Puppet Module for Nexus

This Puppet Module downloads Maven artifacts from a Nexus server. It supports:

  • artifact identification using GAV classifier and packaging
  • repository selection
  • authentication

It relies on the Nexus REST service and on curl.

Getting the module

  • Clone this repository and add it to your modulepath

Usage

# Initialize Nexus
class {'nexus':
	url => "http://edge.spree.de/nexus",
	username => "nexus",
	password => "********"
}

nexus::artifact {'commons-io':
	gav => "commons-io:commons-io:2.1",
	repository => "public",
	output => "/tmp/commons-io-2.1.jar"
}

nexus::artifact {'ipojo':
	gav => "org.apache.felix:org.apache.felix.ipojo:1.8.0",
	repository => "public",
	output => "/tmp/ipojo-1.8.jar"
}

nexus::artifact {'chameleon web distribution':
	gav => "org.ow2.chameleon:distribution-web:0.3.0-SNAPSHOT",
	classifier => 'distribution',
	packaging => 'zip',
	repository => "public-snapshots",
	output => "/tmp/distribution-web-0.3.0-SNAPSHOT.zip",
	timeout => 600,
	owner => 'myuser',
	group => 'mygroup',
	mode => 0755
}

License

This project is licensed under the Apache Software License 2.0.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].