Skip to content

Commit e4c222d

Browse files
authored
Merge pull request #863 from cloudfoundry/java-16
Java 16
2 parents 7c4feb9 + 8f6eda6 commit e4c222d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

rakelib/dependency_cache_task.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def configurations(component_id, configuration, sub_component_id = nil)
132132

133133
if component_id == 'open_jdk_jre' && sub_component_id == 'jre'
134134
c1 = configuration.clone
135-
c1['version'] = '15.+'
135+
c1['version'] = '16.+'
136136

137137
configurations << c1
138138
end

rakelib/versions_task.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def initialize
7272
'jprofiler_profiler' => 'JProfiler Profiler',
7373
'jre' => 'OpenJDK JRE',
7474
'jre-11' => 'OpenJDK JRE 11',
75-
'jre-15' => 'OpenJDK JRE 15',
75+
'jre-16' => 'OpenJDK JRE 16',
7676
'jrebel_agent' => 'JRebel Agent',
7777
'jvmkill_agent' => 'jvmkill Agent',
7878
'lifecycle_support' => 'Tomcat Lifecycle Support',
@@ -167,8 +167,8 @@ def configurations(component_id, configuration, sub_component_id = nil)
167167

168168
if component_id == 'open_jdk_jre' && sub_component_id == 'jre'
169169
c1 = configuration.clone
170-
c1['sub_component_id'] = 'jre-15'
171-
c1['version'] = '15.+'
170+
c1['sub_component_id'] = 'jre-16'
171+
c1['version'] = '16.+'
172172

173173
configurations << c1
174174
end

0 commit comments

Comments
 (0)