-
Notifications
You must be signed in to change notification settings - Fork 6
/
buildpack.toml
359 lines (309 loc) · 15.7 KB
/
buildpack.toml
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
# Copyright 2018-2023 the original author or authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
api = "0.7"
[buildpack]
description = "A Cloud Native Buildpack that provides the Open Liberty and WebSphere Liberty runtimes."
homepage = "https://github.com/paketo-buildpacks/liberty"
id = "paketo-buildpacks/liberty"
keywords = ["java", "javaee", "liberty"]
name = "Paketo Buildpack for Liberty"
sbom-formats = ["application/vnd.cyclonedx+json", "application/vnd.syft+json"]
version = "{{.version}}"
[[buildpack.licenses]]
type = "Apache-2.0"
uri = "https://github.com/paketo-buildpacks/liberty/blob/main/LICENSE"
[metadata]
include-files = ["LICENSE", "NOTICE", "README.md", "linux/amd64/bin/build", "linux/amd64/bin/detect", "linux/amd64/bin/main", "linux/amd64/bin/helper", "linux/arm64/bin/build", "linux/arm64/bin/detect", "linux/arm64/bin/main", "linux/arm64/bin/helper", "buildpack.toml", "templates/server.tmpl", "templates/app.tmpl", "templates/features.tmpl", "templates/expose-default-endpoint.xml"]
pre-package = "scripts/build.sh"
[[metadata.configurations]]
build = true
default = ""
description = "the application server to use"
name = "BP_JAVA_APP_SERVER"
[[metadata.configurations]]
build = true
default = "ol"
description = "Install type of Liberty"
launch = false
name = "BP_LIBERTY_INSTALL_TYPE"
[[metadata.configurations]]
build = true
default = "*"
description = "Which version of the Liberty runtime to install"
launch = false
name = "BP_LIBERTY_VERSION"
[[metadata.configurations]]
build = true
default = ""
description = "The Liberty profile to install"
launch = false
name = "BP_LIBERTY_PROFILE"
[[metadata.configurations]]
build = true
default = ""
description = "Name of the server to use"
launch = true
name = "BP_LIBERTY_SERVER_NAME"
[[metadata.configurations]]
build = true
default = ""
description = "Context root to use for app"
launch = false
name = "BP_LIBERTY_CONTEXT_ROOT"
[[metadata.configurations]]
build = false
default = ""
description = "Sets the logging level"
launch = true
name = "BPL_LIBERTY_LOG_LEVEL"
[[metadata.configurations]]
build = true
default = ""
description = "A space separated list of liberty features to install."
launch = false
name = "BP_LIBERTY_FEATURES"
[[metadata.configurations]]
build = true
default = "false"
description = "Disable running the feature installer."
launch = false
name = "BP_LIBERTY_FEATURE_INSTALL_DISABLED"
[[metadata.configurations]]
build = true
default = "false"
description = "OpenJ9 only: Disable building the shared class cache."
launch = false
name = "BP_LIBERTY_SCC_DISABLED"
[[metadata.configurations]]
build = true
default = "100"
description = "OpenJ9 only: Size to use for the shared class cache."
launch = false
name = "BP_LIBERTY_SCC_SIZE_MB"
[[metadata.configurations]]
build = true
default = "1"
description = "OpenJ9 only: Number of iterations to cycle the server when building the shared class cache."
launch = false
name = "BP_LIBERTY_SCC_NUM_ITERATIONS"
[[metadata.configurations]]
build = true
default = "false"
description = "OpenJ9 only: Disable trimming the size of the shared class cache."
launch = false
name = "BP_LIBERTY_SCC_TRIM_SIZE_DISABLED"
[[metadata.dependencies]]
cpes = ["cpe:2.3:a:ibm:open_liberty:24.0.0.10:*:*:*:*:*:*:*"]
id = "open-liberty-runtime-full"
name = "Open Liberty (All Features)"
purl = "pkg:maven/io.openliberty/[email protected]"
sha256 = "c58bee3ea580e00897ecfc4acfb944b0d4512722c54667f97b98da881f8c3085"
source = "https://github.com/OpenLiberty/open-liberty/archive/refs/tags/gm-24.0.0.10.tar.gz"
source-sha256 = "ca7c25ac073f5cae5c0234a07a6fac08f7d5947c2fd49a6eb19072f73dc53a3f"
stacks = ["*"]
uri = "https://repo1.maven.org/maven2/io/openliberty/openliberty-runtime/24.0.0.10/openliberty-runtime-24.0.0.10.zip"
version = "24.0.10"
[[metadata.dependencies.licenses]]
type = "EPL-2.0"
uri = "https://raw.githubusercontent.com/OpenLiberty/open-liberty/integration/LICENSE"
[[metadata.dependencies]]
cpes = ["cpe:2.3:a:ibm:open_liberty:24.0.0.10:*:*:*:*:*:*:*"]
id = "open-liberty-runtime-jakartaee10"
name = "Open Liberty (Jakarta EE10)"
purl = "pkg:maven/io.openliberty/[email protected]"
sha256 = "d61429751645c14dbfd8527e791f7c7f876b16b0e7dd5aa5b6624cd085ac1181"
source = "https://github.com/OpenLiberty/open-liberty/archive/refs/tags/gm-24.0.0.10.tar.gz"
source-sha256 = "ca7c25ac073f5cae5c0234a07a6fac08f7d5947c2fd49a6eb19072f73dc53a3f"
stacks = ["*"]
uri = "https://repo1.maven.org/maven2/io/openliberty/openliberty-jakartaee10/24.0.0.10/openliberty-jakartaee10-24.0.0.10.zip"
version = "24.0.10"
[[metadata.dependencies.licenses]]
type = "EPL-2.0"
uri = "https://raw.githubusercontent.com/OpenLiberty/open-liberty/integration/LICENSE"
[[metadata.dependencies]]
cpes = ["cpe:2.3:a:ibm:open_liberty:24.0.0.10:*:*:*:*:*:*:*"]
id = "open-liberty-runtime-javaee8"
name = "Open Liberty (Java EE8)"
purl = "pkg:maven/io.openliberty/[email protected]"
sha256 = "d104645ecb2d107b0592632d28f5186596e071890cc5842b18dcd3319357f62c"
source = "https://github.com/OpenLiberty/open-liberty/archive/refs/tags/gm-24.0.0.10.tar.gz"
source-sha256 = "ca7c25ac073f5cae5c0234a07a6fac08f7d5947c2fd49a6eb19072f73dc53a3f"
stacks = ["*"]
uri = "https://repo1.maven.org/maven2/io/openliberty/openliberty-javaee8/24.0.0.10/openliberty-javaee8-24.0.0.10.zip"
version = "24.0.10"
[[metadata.dependencies.licenses]]
type = "EPL-2.0"
uri = "https://raw.githubusercontent.com/OpenLiberty/open-liberty/integration/LICENSE"
[[metadata.dependencies]]
cpes = ["cpe:2.3:a:ibm:open_liberty:24.0.0.10:*:*:*:*:*:*:*"]
id = "open-liberty-runtime-webProfile10"
name = "Open Liberty (Web Profile 10)"
purl = "pkg:maven/io.openliberty/[email protected]"
sha256 = "1d30b34150ef6921ce72ae120d870933e2eb5b292862338c4de510e513d2d59e"
source = "https://github.com/OpenLiberty/open-liberty/archive/refs/tags/gm-24.0.0.10.tar.gz"
source-sha256 = "ca7c25ac073f5cae5c0234a07a6fac08f7d5947c2fd49a6eb19072f73dc53a3f"
stacks = ["*"]
uri = "https://repo1.maven.org/maven2/io/openliberty/openliberty-webProfile10/24.0.0.10/openliberty-webProfile10-24.0.0.10.zip"
version = "24.0.10"
[[metadata.dependencies.licenses]]
type = "EPL-2.0"
uri = "https://raw.githubusercontent.com/OpenLiberty/open-liberty/integration/LICENSE"
[[metadata.dependencies]]
cpes = ["cpe:2.3:a:ibm:open_liberty:24.0.0.10:*:*:*:*:*:*:*"]
id = "open-liberty-runtime-webProfile8"
name = "Open Liberty (Web Profile 8)"
purl = "pkg:maven/io.openliberty/[email protected]"
sha256 = "c3ea55a3a2d375d4b2b5311f3ba20db29ab2e2afcdd4085e12c60c56310e5590"
source = "https://github.com/OpenLiberty/open-liberty/archive/refs/tags/gm-24.0.0.10.tar.gz"
source-sha256 = "ca7c25ac073f5cae5c0234a07a6fac08f7d5947c2fd49a6eb19072f73dc53a3f"
stacks = ["*"]
uri = "https://repo1.maven.org/maven2/io/openliberty/openliberty-webProfile8/24.0.0.10/openliberty-webProfile8-24.0.0.10.zip"
version = "24.0.10"
[[metadata.dependencies.licenses]]
type = "EPL-2.0"
uri = "https://raw.githubusercontent.com/OpenLiberty/open-liberty/integration/LICENSE"
[[metadata.dependencies]]
cpes = ["cpe:2.3:a:ibm:open_liberty:24.0.0.10:*:*:*:*:*:*:*"]
id = "open-liberty-runtime-microProfile6"
name = "Open Liberty (Micro Profile 6)"
purl = "pkg:maven/io.openliberty/[email protected]"
sha256 = "6f0bee1ce6f6fbcba7860a00c101cbc6c4e0540d9077ace3d6e001fb5cdca9d0"
source = "https://github.com/OpenLiberty/open-liberty/archive/refs/tags/gm-24.0.0.10.tar.gz"
source-sha256 = "ca7c25ac073f5cae5c0234a07a6fac08f7d5947c2fd49a6eb19072f73dc53a3f"
stacks = ["*"]
uri = "https://repo1.maven.org/maven2/io/openliberty/openliberty-microProfile6/24.0.0.10/openliberty-microProfile6-24.0.0.10.zip"
version = "24.0.10"
[[metadata.dependencies.licenses]]
type = "EPL-2.0"
uri = "https://raw.githubusercontent.com/OpenLiberty/open-liberty/integration/LICENSE"
[[metadata.dependencies]]
cpes = ["cpe:2.3:a:ibm:open_liberty:24.0.0.10:*:*:*:*:*:*:*"]
id = "open-liberty-runtime-microProfile4"
name = "Open Liberty (Micro Profile 4)"
purl = "pkg:maven/io.openliberty/[email protected]"
sha256 = "e1f63811bd6d5907ddbf40e0deca902069dc06806b3610cb1249cd2939d6c18d"
source = "https://github.com/OpenLiberty/open-liberty/archive/refs/tags/gm-24.0.0.10.tar.gz"
source-sha256 = "ca7c25ac073f5cae5c0234a07a6fac08f7d5947c2fd49a6eb19072f73dc53a3f"
stacks = ["*"]
uri = "https://repo1.maven.org/maven2/io/openliberty/openliberty-microProfile4/24.0.0.10/openliberty-microProfile4-24.0.0.10.zip"
version = "24.0.10"
[[metadata.dependencies.licenses]]
type = "EPL-2.0"
uri = "https://raw.githubusercontent.com/OpenLiberty/open-liberty/integration/LICENSE"
[[metadata.dependencies]]
cpes = ["cpe:2.3:a:ibm:open_liberty:24.0.0.10:*:*:*:*:*:*:*"]
id = "open-liberty-runtime-kernel"
name = "Open Liberty (Kernel)"
purl = "pkg:maven/io.openliberty/[email protected]"
sha256 = "a12cd0d644f656461c7536af87aedae2cf7aef046e6f6af8016de1da1ce2eb7d"
source = "https://github.com/OpenLiberty/open-liberty/archive/refs/tags/gm-24.0.0.10.tar.gz"
source-sha256 = "ca7c25ac073f5cae5c0234a07a6fac08f7d5947c2fd49a6eb19072f73dc53a3f"
stacks = ["*"]
uri = "https://repo1.maven.org/maven2/io/openliberty/openliberty-kernel/24.0.0.10/openliberty-kernel-24.0.0.10.zip"
version = "24.0.10"
[[metadata.dependencies.licenses]]
type = "EPL-2.0"
uri = "https://raw.githubusercontent.com/OpenLiberty/open-liberty/integration/LICENSE"
[[metadata.dependencies]]
cpes = ["cpe:2.3:a:ibm:websphere_application_server:24.0.0.10:*:*:*:liberty:*:*:*"]
id = "websphere-liberty-runtime-kernel"
name = "WebSphere Liberty (Kernel)"
purl = "pkg:maven/com.ibm.websphere.appserver.runtime/[email protected]"
sha256 = "d0e3f982cade196a0e89453e2e3d5da0ce6bdeede8a8b0c9785947ac38c78445"
stacks = ["*"]
uri = "https://repo1.maven.org/maven2/com/ibm/websphere/appserver/runtime/wlp-kernel/24.0.0.10/wlp-kernel-24.0.0.10.zip"
version = "24.0.10"
[[metadata.dependencies.licenses]]
type = "Proprietary"
uri = "https://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/wasdev/downloads/wlp/23.0.0.3/lafiles/runtime/en.html"
[[metadata.dependencies]]
cpes = ["cpe:2.3:a:ibm:websphere_application_server:24.0.0.10:*:*:*:liberty:*:*:*"]
id = "websphere-liberty-runtime-jakartaee10"
name = "WebSphere Liberty (Jakarta EE9)"
purl = "pkg:maven/com.ibm.websphere.appserver.runtime/[email protected]"
sha256 = "bcc758eb3cae43fa1c3691ffcf9234b3f188ad8f1b4a8be90a34c6b27dc164be"
stacks = ["*"]
uri = "https://repo1.maven.org/maven2/com/ibm/websphere/appserver/runtime/wlp-jakartaee10/24.0.0.10/wlp-jakartaee10-24.0.0.10.zip"
version = "24.0.10"
[[metadata.dependencies.licenses]]
type = "Proprietary"
uri = "https://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/wasdev/downloads/wlp/23.0.0.3/lafiles/runtime/en.html"
[[metadata.dependencies]]
cpes = ["cpe:2.3:a:ibm:websphere_application_server:24.0.0.10:*:*:*:liberty:*:*:*"]
id = "websphere-liberty-runtime-javaee8"
name = "WebSphere Liberty (Java EE8)"
purl = "pkg:maven/com.ibm.websphere.appserver.runtime/[email protected]"
sha256 = "903812552a2ce279713741fa88e64e560fd974812b8c97afa40fc652cecf2bdc"
stacks = ["*"]
uri = "https://repo1.maven.org/maven2/com/ibm/websphere/appserver/runtime/wlp-javaee8/24.0.0.10/wlp-javaee8-24.0.0.10.zip"
version = "24.0.10"
[[metadata.dependencies.licenses]]
type = "Proprietary"
uri = "https://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/wasdev/downloads/wlp/23.0.0.3/lafiles/runtime/en.html"
[[metadata.dependencies]]
cpes = ["cpe:2.3:a:ibm:websphere_application_server:24.0.0.10:*:*:*:liberty:*:*:*"]
id = "websphere-liberty-runtime-javaee7"
name = "WebSphere Liberty (Java EE7)"
purl = "pkg:maven/com.ibm.websphere.appserver.runtime/[email protected]"
sha256 = "e8bf80c325a85de8e1b13175d07d4e2462793e64919aa70325ffd4ca65fa2f35"
stacks = ["*"]
uri = "https://repo1.maven.org/maven2/com/ibm/websphere/appserver/runtime/wlp-javaee7/24.0.0.10/wlp-javaee7-24.0.0.10.zip"
version = "24.0.10"
[[metadata.dependencies.licenses]]
type = "Proprietary"
uri = "https://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/wasdev/downloads/wlp/23.0.0.3/lafiles/runtime/en.html"
[[metadata.dependencies]]
cpes = ["cpe:2.3:a:ibm:websphere_application_server:24.0.0.10:*:*:*:liberty:*:*:*"]
id = "websphere-liberty-runtime-webProfile10"
name = "WebSphere Liberty (Web Profile 10)"
purl = "pkg:maven/com.ibm.websphere.appserver.runtime/[email protected]"
sha256 = "54a8988abf3d08daf56749405d0393f222385452900857afb53ea5d15aa5497a"
stacks = ["*"]
uri = "https://repo1.maven.org/maven2/com/ibm/websphere/appserver/runtime/wlp-webProfile10/24.0.0.10/wlp-webProfile10-24.0.0.10.zip"
version = "24.0.10"
[[metadata.dependencies.licenses]]
type = "Proprietary"
uri = "https://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/wasdev/downloads/wlp/23.0.0.3/lafiles/runtime/en.html"
[[metadata.dependencies]]
cpes = ["cpe:2.3:a:ibm:websphere_application_server:24.0.0.10:*:*:*:liberty:*:*:*"]
id = "websphere-liberty-runtime-webProfile8"
name = "WebSphere Liberty (Web Profile 8)"
purl = "pkg:maven/com.ibm.websphere.appserver.runtime/[email protected]"
sha256 = "81f9f2cc2a23dedf483a9a4bf98831bbf67fdf324ffedb34c31f69bf292c0b79"
stacks = ["*"]
uri = "https://repo1.maven.org/maven2/com/ibm/websphere/appserver/runtime/wlp-webProfile8/24.0.0.10/wlp-webProfile8-24.0.0.10.zip"
version = "24.0.10"
[[metadata.dependencies.licenses]]
type = "Proprietary"
uri = "https://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/wasdev/downloads/wlp/23.0.0.3/lafiles/runtime/en.html"
[[metadata.dependencies]]
cpes = ["cpe:2.3:a:ibm:websphere_application_server:24.0.0.10:*:*:*:liberty:*:*:*"]
id = "websphere-liberty-runtime-webProfile7"
name = "WebSphere Liberty (Web Profile 7)"
purl = "pkg:maven/com.ibm.websphere.appserver.runtime/[email protected]"
sha256 = "7b44efd1a12d71fbc737812e323d28a7878ae368cedb8090d088525478a12788"
stacks = ["*"]
uri = "https://repo1.maven.org/maven2/com/ibm/websphere/appserver/runtime/wlp-webProfile7/24.0.0.10/wlp-webProfile7-24.0.0.10.zip"
version = "24.0.10"
[[metadata.dependencies.licenses]]
type = "Proprietary"
uri = "https://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/wasdev/downloads/wlp/23.0.0.3/lafiles/runtime/en.html"
[[stacks]]
id = "*"
[[targets]]
arch = "amd64"
os = "linux"
[[targets]]
arch = "arm64"
os = "linux"