Skip to content

Commit

Permalink
Updated to Maven to version 3.8.5 (#165)
Browse files Browse the repository at this point in the history
`3.8.5` is now the default version installed.
  • Loading branch information
freemanjp authored Apr 11, 2022
1 parent 58209cb commit 6b39b1a
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 11 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ are shown below):

```yaml
# Maven version number
maven_version: '3.8.4'
maven_version: '3.8.5'

# Mirror to download the Maven redistributable package from
maven_mirror: "http://archive.apache.org/dist/maven/maven-{{ maven_version|regex_replace('\\..*', '') }}/{{ maven_version }}/binaries"
Expand Down Expand Up @@ -107,7 +107,9 @@ The following versions of Maven are supported without any additional
configuration (for other versions follow the Advanced Configuration
instructions):
* `3.8.5`
* `3.8.4`
* `3.8.3`
* `3.8.2`
* `3.8.1`
* `3.6.3`
Expand Down
2 changes: 1 addition & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
# Maven version number
maven_version: '3.8.4'
maven_version: '3.8.5'

# Mirror to download the Maven redistributable package from
maven_mirror: "http://archive.apache.org/dist/maven/maven-{{ maven_version|regex_replace('\\..*', '') }}/{{ maven_version }}/binaries"
Expand Down
2 changes: 1 addition & 1 deletion molecule/debian-max/converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

roles:
- role: ansible-role-maven
maven_version: '3.8.4'
maven_version: '3.8.5'
maven_install_dir: /opt/maven

post_tasks:
Expand Down
2 changes: 1 addition & 1 deletion molecule/debian-min/converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

roles:
- role: ansible-role-maven
maven_version: '3.8.4'
maven_version: '3.8.5'
maven_install_dir: /opt/maven

post_tasks:
Expand Down
2 changes: 1 addition & 1 deletion molecule/default/converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

roles:
- role: ansible-role-maven
maven_version: '3.8.4'
maven_version: '3.8.5'
maven_install_dir: /opt/maven

- role: ansible-role-maven
Expand Down
2 changes: 1 addition & 1 deletion molecule/default/tests/test_role.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


def test_mvn(host):
assert '3.8.4' in host.check_output('mvn --version')
assert '3.8.5' in host.check_output('mvn --version')


def test_mvn_debug(host):
Expand Down
2 changes: 1 addition & 1 deletion molecule/fedora/converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

roles:
- role: ansible-role-maven
maven_version: '3.8.4'
maven_version: '3.8.5'
maven_install_dir: /opt/maven

post_tasks:
Expand Down
2 changes: 1 addition & 1 deletion molecule/opensuse/converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

roles:
- role: ansible-role-maven
maven_version: '3.8.4'
maven_version: '3.8.5'
maven_install_dir: /opt/maven

post_tasks:
Expand Down
2 changes: 1 addition & 1 deletion molecule/rocky/converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

roles:
- role: ansible-role-maven
maven_version: '3.8.4'
maven_version: '3.8.5'
maven_install_dir: /opt/maven

post_tasks:
Expand Down
2 changes: 1 addition & 1 deletion molecule/single/tests/test_role.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


def test_mvn(host):
assert '3.8.4' in host.check_output('mvn --version')
assert '3.8.5' in host.check_output('mvn --version')


def test_mvn_debug(host):
Expand Down
2 changes: 1 addition & 1 deletion molecule/ubuntu-min/converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

roles:
- role: ansible-role-maven
maven_version: '3.8.4'
maven_version: '3.8.5'
maven_install_dir: /opt/maven

post_tasks:
Expand Down
3 changes: 3 additions & 0 deletions vars/versions/3.8.5.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
# SHA256 sum for the redistributable package
maven_redis_sha256sum: '88e30700f32a3f60e0d28d0f12a3525d29b7c20c72d130153df5b5d6d890c673'

0 comments on commit 6b39b1a

Please sign in to comment.