Skip to content

Commit

Permalink
Updated to Maven to version 3.9.2 (#193)
Browse files Browse the repository at this point in the history
`3.9.2` is now the default version installed.
  • Loading branch information
freemanjp authored Jul 23, 2023
1 parent 346a0d1 commit a8d943d
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 11 deletions.
3 changes: 2 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.9.1'
maven_version: '3.9.2'

# 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,6 +107,7 @@ The following versions of Maven are supported without any additional
configuration (for other versions follow the Advanced Configuration
instructions):
* `3.9.2`
* `3.9.1`
* `3.9.0`
* `3.8.8`
Expand Down
2 changes: 1 addition & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# code: language=ansible
---
# Maven version number
maven_version: '3.9.1'
maven_version: '3.9.2'

# 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 @@ -17,7 +17,7 @@

roles:
- role: ansible-role-maven
maven_version: '3.9.1'
maven_version: '3.9.2'
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 @@ -17,7 +17,7 @@

roles:
- role: ansible-role-maven
maven_version: '3.9.1'
maven_version: '3.9.2'
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 @@ -17,7 +17,7 @@

roles:
- role: ansible-role-maven
maven_version: '3.9.1'
maven_version: '3.9.2'
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.9.1' in host.check_output('mvn --version')
assert '3.9.2' 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 @@ -18,7 +18,7 @@

roles:
- role: ansible-role-maven
maven_version: '3.9.1'
maven_version: '3.9.2'
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 @@ -12,7 +12,7 @@

roles:
- role: ansible-role-maven
maven_version: '3.9.1'
maven_version: '3.9.2'
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 @@ -12,7 +12,7 @@

roles:
- role: ansible-role-maven
maven_version: '3.9.1'
maven_version: '3.9.2'
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.9.1' in host.check_output('mvn --version')
assert '3.9.2' 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 @@ -17,7 +17,7 @@

roles:
- role: ansible-role-maven
maven_version: '3.9.1'
maven_version: '3.9.2'
maven_install_dir: /opt/maven

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

0 comments on commit a8d943d

Please sign in to comment.