maestrodev/puppet-ant

Name: puppet-ant

Owner: MaestroDev

Description: null

Created: 2012-08-15 21:56:00.0

Updated: 2017-08-23 14:39:52.0

Pushed: 2017-08-24 04:26:33.0

Homepage: null

Size: 32

Language: Ruby

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

puppet-ant

Puppet module for installing Ant and/or Ivy from the Apache Software Foundation.

To install ant, simply include the ant class. You can also specify a particular version like so:

class { 'ant':
  version => 'x.y.z',
}

This module also lets you install the Ivy dependency management tool. To install Ivy, simply include the ant::ivy class. You can also specify a particular version like so:

class { 'ant::ivy':
  version => 'x.y.z',
}

You can use this module to install antlibs. Here is an example that installs the Maven ant tasks.

ant::lib{'maven-ant-tasks':
  source_url => 'http://archive.apache.org/dist/maven/binaries/maven-ant-tasks-2.1.3.jar',
  version => '2.1.3'
}

This will download the maven ant tasks jar file from the specified URL and place the maven-ant-tasks-2.1.3.jar file under the Ant lib directory.

License
Copyright 2011-2013 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.

This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.