Skip to content

Commit

Permalink
Added support for 8u141 release (#93)
Browse files Browse the repository at this point in the history
8u141 will now be the version installed by default.
  • Loading branch information
freemanjp authored Jul 22, 2017
1 parent 2295785 commit 1eb61d3
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ are shown below):

```yaml
# Java version number
java_version: '8u131'
java_version: '8u141'

# Base installation directory for any Java distribution
java_install_dir: '/opt/java'
Expand Down Expand Up @@ -128,14 +128,15 @@ instructions):
**Current release**
* 8u131
* 8u141
**Caution:** the current versions will be moved to Oracle's archives when a
newer version is released; if you don't want your provisioning to break when
that happens, you should follow the advice for archived versions below.
**Archived versions**
* 8u131
* 8u121
* 8u112
* 8u111
Expand Down Expand Up @@ -229,7 +230,7 @@ then additional configuration will be required - see
- hosts: servers
roles:
- role: gantsign.java
java_version: '8u121'
java_version: '8u141'
```

You can install the multiple versions of the Oracle JDK by using this role more
Expand All @@ -239,7 +240,7 @@ than once:
- hosts: servers
roles:
- role: ansible-role-java
java_version: '8u121'
java_version: '8u141'
java_is_default_installation: yes
java_fact_group_name: java
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 @@
---
# Java version number
java_version: '8u131'
java_version: '8u141'

# Base installation directory for any Java distribution
java_install_dir: '/opt/java'
Expand Down
9 changes: 9 additions & 0 deletions vars/jdk-versions/8u141.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
# SHA256 sum for the redistributable JDK package
java_redis_sha256sum: '041d5218fbea6cd7e81c8c15e51d0d32911573af2ed69e066787a8dc8a39ba4f'

# The build number for this JDK version
java_version_build: 15

# ID in JDK download URL
java_jdk_download_id: '336fa29ff2bb4ef291e347e091f7f4a7'

0 comments on commit 1eb61d3

Please sign in to comment.