-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathbuildpack.toml
129 lines (108 loc) · 4.98 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
# Copyright 2018-2020 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 contributes Spring Boot dependency information and slices an application into multiple layers"
homepage = "https://github.com/paketo-buildpacks/spring-boot"
id = "paketo-buildpacks/spring-boot"
keywords = ["java", "spring", "spring-boot"]
name = "Paketo Buildpack for Spring Boot"
sbom-formats = ["application/vnd.cyclonedx+json", "application/vnd.syft+json"]
version = "{{.version}}"
[[buildpack.licenses]]
type = "Apache-2.0"
uri = "https://github.com/paketo-buildpacks/spring-boot/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", "spring-generations.toml"]
pre-package = "scripts/build.sh"
[[metadata.configurations]]
build = true
default = "false"
description = "whether to contribute Spring Boot cloud bindings support"
name = "BP_SPRING_CLOUD_BINDINGS_DISABLED"
[[metadata.configurations]]
default = "true"
description = "Deprecated - whether to auto-configure Spring Boot environment properties from bindings"
launch = true
name = "BPL_SPRING_CLOUD_BINDINGS_ENABLED"
[[metadata.configurations]]
default = "false"
description = "whether to auto-configure Spring Boot environment properties from bindings"
launch = true
name = "BPL_SPRING_CLOUD_BINDINGS_DISABLED"
[[metadata.configurations]]
build = true
default = "1"
description = "default version of Spring Cloud Bindings library to contribute"
name = "BP_SPRING_CLOUD_BINDINGS_VERSION"
[[metadata.configurations]]
build = true
default = "false"
description = "whether to enable Spring AOT"
name = "BP_SPRING_AOT_ENABLED"
[[metadata.configurations]]
build = true
default = "false"
description = "whether to enable Spring AOT at runtime"
name = "BPL_SPRING_AOT_ENABLED"
[[metadata.configurations]]
build = true
default = "false"
description = "whether to enable CDS & perform JVM training run"
name = "BP_JVM_CDS_ENABLED"
[[metadata.configurations]]
build = true
default = "false"
description = "whether to enable CDS optimizations at runtime"
name = "BPL_JVM_CDS_ENABLED"
[[metadata.dependencies]]
cpes = ["cpe:2.3:a:vmware:spring_cloud_bindings:1.13.0:*:*:*:*:*:*:*"]
id = "spring-cloud-bindings"
name = "Spring Cloud Bindings"
purl = "pkg:generic/springframework/spring-cloud-bindings@1.13.0"
sha256 = "70a448cd45d1dbc117770f934961cd9577c0c4404d34986824f8f593cae4aada"
source = "https://repo1.maven.org/maven2/org/springframework/cloud/spring-cloud-bindings/1.13.0/spring-cloud-bindings-1.13.0-sources.jar"
source-sha256 = "c3f4d0678682fee85d22109fd8257948811956bac095d6eca6b9d5c2cd97690f"
stacks = ["io.buildpacks.stacks.bionic", "io.paketo.stacks.tiny", "*"]
uri = "https://repo1.maven.org/maven2/org/springframework/cloud/spring-cloud-bindings/1.13.0/spring-cloud-bindings-1.13.0.jar"
version = "1.13.0"
[[metadata.dependencies.licenses]]
type = "Apache-2.0"
uri = "https://github.com/spring-cloud/spring-cloud-bindings/blob/main/LICENSE"
[[metadata.dependencies]]
cpes = ["cpe:2.3:a:vmware:spring_cloud_bindings:2.0.0:*:*:*:*:*:*:*"]
id = "spring-cloud-bindings"
name = "Spring Cloud Bindings"
purl = "pkg:generic/springframework/spring-cloud-bindings@2.0.0"
sha256 = "32e47c2139d6379836910f0d1cc253a019ac282f3aeea12237069f00046279ad"
source = "https://repo1.maven.org/maven2/org/springframework/cloud/spring-cloud-bindings/2.0.4/spring-cloud-bindings-2.0.4-sources.jar"
source-sha256 = "c572bbd9855bdb75a3e99ade3ef5a4c042cf03b49437b2edc84a5bb4b7c01f6c"
stacks = ["io.buildpacks.stacks.bionic", "io.paketo.stacks.tiny", "*"]
uri = "https://repo1.maven.org/maven2/org/springframework/cloud/spring-cloud-bindings/2.0.4/spring-cloud-bindings-2.0.4.jar"
version = "2.0.4"
[[metadata.dependencies.licenses]]
type = "Apache-2.0"
uri = "https://github.com/spring-cloud/spring-cloud-bindings/blob/main/LICENSE"
[[stacks]]
id = "io.buildpacks.stacks.bionic"
[[stacks]]
id = "io.paketo.stacks.tiny"
[[stacks]]
id = "*"
[[targets]]
arch = "amd64"
os = "linux"
[[targets]]
arch = "arm64"
os = "linux"