Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/avinash6784/ansible-maven
Ansible role to install apache maven
https://github.com/avinash6784/ansible-maven
ansible ansible-role apache-maven build-tool devops maven
Last synced: 25 days ago
JSON representation
Ansible role to install apache maven
- Host: GitHub
- URL: https://github.com/avinash6784/ansible-maven
- Owner: avinash6784
- License: mit
- Created: 2017-03-11T07:02:30.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-13T16:18:22.000Z (almost 7 years ago)
- Last Synced: 2024-09-29T16:24:12.938Z (about 1 month ago)
- Topics: ansible, ansible-role, apache-maven, build-tool, devops, maven
- Size: 4.88 KB
- Stars: 5
- Watchers: 1
- Forks: 30
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ansible Role: Apache Maven 3 [Ansible Playbook Role To Install Maven]
Install Apache Maven 3, a distributed version control system, on any RHEL/CentOS Linux system.
## Requirements
None.
## Role Variables
```yml#Maven vars
maven_major: 3
maven_version: 3.3.9
maven_home_parent_directory: /opt
maven_env_file: "/etc/profile.d/maven.sh"```
## Dependencies
This role depends on avinash6784.oracle-java role. This is configured for ansible-galaxy install in requirements.yml.
**NOTE**: Requirements are installed as virtual user avinash6784 (avinash6784.oracle-java).
Be sure to install required roles with
```
ansible-galaxy install --role-file requirements.yml
```## Usage and Example Playbook
Install from Ansible Galaxy
```
$ ansible-galaxy install avinash6784.maven
```
Or download manually
```
$ git clone https://github.com/avinash6784/ansible-maven.git
```
The code should reside in the roles directory of ansible ( See ansible documentation for more information on roles ), in a folder maven.## Run the playbook
First create a playbook including the git role, naming it maven.yml.
```yml
- name: Install maven
hosts: maven
become: true
roles:
- maven
$ ansible-playbook -i hosts maven.yml
```## Author Informations
This role was created by [Avinash Pawar](http://devopstechie.com).