-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathbase.html
More file actions
151 lines (117 loc) · 4.86 KB
/
base.html
File metadata and controls
151 lines (117 loc) · 4.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<!-- Do not manually edit this file, it is generated from https://github.com/jenkinsci/packaging/blob/master/templates/base.html -->
<html lang="en">
<head>
<meta charset="UTF-8" />
{% block head %}
<title>{{ os_family | capitalize}} {{product_name | capitalize }} Packages</title>
{% endblock %}
<link href='https://www.jenkins.io/sites/default/files/jenkins_favicon.ico' rel='shortcut icon' type='image/x-icon'/>
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65"
crossorigin="anonymous">
<script
src="https://cdn.jsdelivr.net/npm/jquery@3.6.3/dist/jquery.min.js"
integrity="sha256-pvPw+upLPUjgMXY0G+8O0xUf+/Im1MZjXxxgOcBQBXU="
crossorigin="anonymous"></script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.min.js"
integrity="sha384-cuYeSxntonz0PPNlHhBs68uyIAVpIIOZZ5JqeqvYYIcEL727kskC66kF92t6Xl2V"
crossorigin="anonymous"></script>
<style type="text/css">
dl {
padding: 0;
}
dl dt {
padding: 0;
margin-top: 1em;
font-size: 1em;
font-style: italic;
font-weight: bold;
}
dl dd {
padding: 0 1em;
margin-bottom: 1em;
}
</style>
</head>
<body style="min-height:100%; height:100%; padding-top:100px">
<script src="https://cdn.jsdelivr.net/npm/lit@3.3.2/polyfill-support.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@webcomponents/webcomponentsjs@2.8.0/webcomponents-loader.js"></script>
<script data="jio" src="https://cdn.jsdelivr.net/npm/@jenkinsci/jenkins-io-components/+esm" type="module"></script>
<script data="jio" nomodule="" src="https://cdn.jsdelivr.net/npm/@jenkinsci/jenkins-io-components/"></script>
<div class="fixed-top">
<jio-navbar class="fixed-top" property="https://get.jenkins.io"/>
</div>
<div class='container'>
<div class='row'>
<div class="col-md-12">
<div class="main">
<h1>{% block title %}{{product_name | capitalize }} {{ os_family | capitalize}} Packages{% endblock %}</h1>
{% block distribution_instruction %}{% endblock %}
{% block java_instructions %}
<p>
You will need to explicitly install a supported Java runtime environment (JRE), either from your distribution
(as described above) or another Java vendor (e.g., <a href="https://adoptium.net/">Adoptium</a>).
</p>
<h2>
Weekly Release Line
</h2>
<p>
Supported Java versions for the weekly release line are:
</p>
<dl>
<dt>2.463 (June 2024) and newer</dt>
<dd>Java 17 or Java 21</dd>
<dt>2.419 (August 2023) and newer</dt>
<dd>Java 11, Java 17, or Java 21</dd>
<dt>2.357 (June 2022) and newer</dt>
<dd>Java 11 or Java 17</dd>
<dt>2.164 (February 2019) and newer</dt>
<dd>Java 8 or Java 11</dd>
<dt>2.54 (April 2017) and newer</dt>
<dd>Java 8</dd>
<dt>1.612 (May 2015) and newer</dt>
<dd>Java 7</dd>
</dl>
<h2>
<a href="https://www.jenkins.io/download/lts/">Long Term Support (LTS)</a> Release Line
</h2>
<p>
Supported Java versions for the LTS release line are:
</p>
<dl>
<dt>2.479.1 (October 2024) and newer</dt>
<dd>Java 17 or Java 21</dd>
<dt>2.426.1 (November 2023) and newer</dt>
<dd>Java 11, Java 17 or Java 21</dd>
<dt>2.361.1 (September 2022) and newer</dt>
<dd>Java 11 or Java 17</dd>
<dt>2.346.1 (June 2022) and newer</dt>
<dd>Java 8, Java 11, or Java 17</dd>
<dt>2.164.1 (March 2019) and newer</dt>
<dd>Java 8 or Java 11</dd>
<dt>2.60.1 (June 2017) and newer</dt>
<dd>Java 8</dd>
<dt>1.625.1 (October 2015) and newer</dt>
<dd>Java 7</dd>
</dl>
{% endblock %}
<p>
See <a href="https://www.jenkins.io/doc/book/installing/">the installation guide</a> for more information, including how {{ product_name }} is run and where the configuration is stored, etc.
</p>
</div>
</div>
</div>
</div>
<script>
$(function() {
$('.hostname').html($(location).attr('origin'));
});
</script>
<div class='container' style="min-height:100%; height:100%; padding-top:50px; padding-bottom:50px">
<div class='row'>
<div class="col-md-12">
<div class="card">
<!-- End of this html document is located in FOOTER.html -->