Skip to content

Commit 91aefac

Browse files
author
Daniel Mikusa
authored
Drop Java 16 and add Java 17 (#901)
Signed-off-by: Daniel Mikusa <[email protected]>
1 parent 20da5f1 commit 91aefac

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
@@ -138,7 +138,7 @@ def configurations(component_id, configuration, sub_component_id = nil)
138138

139139
if component_id == 'open_jdk_jre' && sub_component_id == 'jre'
140140
c1 = configuration.clone
141-
c1['version'] = '16.+'
141+
c1['version'] = '17.+'
142142

143143
configurations << c1
144144
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-16' => 'OpenJDK JRE 16',
75+
'jre-17' => 'OpenJDK JRE 17',
7676
'jrebel_agent' => 'JRebel Agent',
7777
'jvmkill_agent' => 'jvmkill Agent',
7878
'lifecycle_support' => 'Tomcat Lifecycle Support',
@@ -168,8 +168,8 @@ def configurations(component_id, configuration, sub_component_id = nil)
168168

169169
if component_id == 'open_jdk_jre' && sub_component_id == 'jre'
170170
c1 = configuration.clone
171-
c1['sub_component_id'] = 'jre-16'
172-
c1['version'] = '16.+'
171+
c1['sub_component_id'] = 'jre-17'
172+
c1['version'] = '17.+'
173173

174174
configurations << c1
175175
end

0 commit comments

Comments
 (0)