A `createdDate` option on the Maven `spring-boot:build-image` goal and the Gradle `bootBuildImage` task can be used to set the `Created` metadata field on a generated OCI image to a specified date or to the current date. Closes gh-28798
21 lines
542 B
TOML
21 lines
542 B
TOML
# Buildpacks to include in builder
|
|
[[buildpacks]]
|
|
id = "spring-boot/test-info"
|
|
version = "0.0.2"
|
|
uri = "../buildpacks/test-info"
|
|
|
|
# Order used for detection
|
|
[[order]]
|
|
[[order.group]]
|
|
id = "spring-boot/test-info"
|
|
version = "0.0.2"
|
|
|
|
# Stack that will be used by the builder
|
|
[stack]
|
|
id = "io.paketo.stacks.tiny"
|
|
build-image = "projects.registry.vmware.com/springboot/build:tiny-cnb"
|
|
run-image = "projects.registry.vmware.com/springboot/run:tiny-cnb"
|
|
|
|
# Lifecycle executable version that will be used by the builder
|
|
[lifecycle]
|
|
version = "0.15.3" |