Puppet Class: maven

Defined in:
manifests/init.pp

Overview

Class: maven

A puppet recipe for Apache Maven, to download artifacts from a Maven repository

It uses Apache Maven command line to download the artifacts.

Parameters:

- $version:
      Maven version.

Requires:

Java package installed.

Sample Usage:

class {'maven':
  version => "3.0.5",
}


34
35
36
37
38
39
40
# File 'manifests/init.pp', line 34

class maven() {

  notice('Installing Maven module pre-requisites')

  class { 'maven::maven': }

}