A Puppet recipe for Apache Maven, to download artifacts from a Maven repository
Uses Apache Maven command line to download the artifacts.
To build the module for installing in your Puppet master:
gem install puppet-module git clone git://github.com/maestrodev/puppet-maven.git cd puppet-maven puppet module build puppet module install pkg/maestrodev-maven-1.0.1.tar.gzOf course, you can also clone the repository straight into /etc/puppet/modules/maven as well.
If you are developing the module, it can be built using rake:
gem install bundler bundle rake specUsing Puppetlabs Beaker. To run the default Vagrant box in CentOS 6.5 just do
rake beaker To run any other box, check the definitions at spec/acceptance/nodesets. For instance to run the tests with Docker in CentOS 6.5
BEAKER_set=centos-65-x64-docker rake beaker maven{"/tmp/myfile": id => "groupId:artifactId:version:packaging:classifier", repos => ["id::layout::http://repo.acme.com","http://repo2.acme.com"], }or
maven{"/tmp/myfile": groupid => "org.apache.maven", artifactid => "maven-core", version => "3.2.5", packaging => "jar", classifier => "sources", repos => ["id::layout::http://repo.acme.com","http://repo2.acme.com"], }ensure may be one of two values:
present(the default) -- the specified maven artifact is downloaded when no file exists atpath(ornameif no path is specified.) This is probably makes sense when the specified maven artifact refers to a released (non-SNAPSHOT) artifact.latest-- if value of version is a specific version,RELEASE,LATEST, or a SNAPSHOT the repository is queried for an updated artifact. If an updated artifact is found the file atpathis replaced.
Values set in maven_opts will be prepended to any existing MAVEN_OPTS value. This ensures that those already specified will win over those added in mavenrc.
If you would prefer these options to win, instead use:
maven_opts => "", mavenrc_additions => 'MAVEN_OPTS="$MAVEN_OPTS -Xmx1024m"$central ={id => "myrepo", username => "myuser", password => "mypassword", url => "http://repo.acme.com", mirrorof => "external:*", # if you want to use the repo as a mirror, see maven::settings below } $proxy ={active => true, #Defaults to trueprotocol => 'http', #Defaults to 'http'host => 'http://proxy.acme.com', username => 'myuser', #Optional if proxy does not requirepassword => 'mypassword', #Optional if proxy does not requirenonProxyHosts => 'www.acme.com', #Optional, provides exceptions to the proxy } # Install Mavenclass{"maven::maven": version => "3.2.5", # version to install# you can get Maven tarball from a Maven repository instead than from Apache servers, optionally with a user/passwordrepo =>{#url => "http://repo.maven.apache.org/maven2",#username => "",#password => "", } } -> # Setup a .mavenrc file for the specified user maven::environment{'maven-env' : user => 'root', # anything to add to MAVEN_OPTS in ~/.mavenrcmaven_opts => '-Xmx1384m', # anything to add to MAVEN_OPTS in ~/.mavenrcmaven_path_additions => "", # anything to add to the PATH in ~/.mavenrc } -> # Create a settings.xml with the repo credentials maven::settings{'maven-user-settings' : mirrors => [$central], # mirrors entry in settings.xml, uses id, url, mirrorof from the hash passedservers => [$central], # servers entry in settings.xml, uses id, username, password from the hash passed, privateKeyproxies => [$proxy], # proxies entry in settings.xml, active, protocol, host, username, password, nonProxyHostsuser => 'maven', } # defaults for all maven{} declarations Maven{user => "maven", # you can make puppet run Maven as a specific user instead of root, useful to share Maven settings and local repositorygroup => "maven", # you can make puppet run Maven as a specific grouprepos => "http://repo.maven.apache.org/maven2" }maven{"/tmp/maven-core-3.2.5.jar": id => "org.apache.maven:maven-core:3.2.5:jar", repos => ["central::default::http://repo.maven.apache.org/maven2","http://mirrors.ibiblio.org/pub/mirrors/maven2"], } maven{"/tmp/maven-core-3.2.5-sources.jar": groupid => "org.apache.maven", artifactid => "maven-core", version => "3.2.5", classifier => "sources", }Initially there was an Apache Buildr version, but it required to have Buildr installed before running Puppet and you would need to enable pluginsync in both master and clients.
Copyright 2011-2012 MaestroDev 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. Carlos Sanchez [email protected]MaestroDev 2010-03-01