Skip to content

Commit 414a751

Browse files
committed
Merge pull request #45238 from EvaristeGalois11
* pr/45238: Fix documentation links to buildpacks.io Closes gh-45238
2 parents 9bcf32a + 6a997d1 commit 414a751

File tree

3 files changed

+10
-10
lines changed
  • spring-boot-project

3 files changed

+10
-10
lines changed

spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/packaging/native-image/advanced-topics.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,13 @@ NOTE: Your executable jar must include AOT generated assets such as generated cl
5353
=== Using Buildpacks
5454

5555
Spring Boot applications usually use Cloud Native Buildpacks through the Maven (`mvn spring-boot:build-image`) or Gradle (`gradle bootBuildImage`) integrations.
56-
You can, however, also use https://buildpacks.io//docs/tools/pack/[`pack`] to turn an AOT processed Spring Boot executable jar into a native container image.
56+
You can, however, also use {url-buildpacks-docs}/for-platform-operators/how-to/integrate-ci/pack/[`pack`] to turn an AOT processed Spring Boot executable jar into a native container image.
5757

5858

5959
First, make sure that a Docker daemon is available (see https://docs.docker.com/installation/#installation[Get Docker] for more details).
6060
https://docs.docker.com/engine/install/linux-postinstall/#manage-docker-as-a-non-root-user[Configure it to allow non-root user] if you are on Linux.
6161

62-
You also need to install `pack` by following https://buildpacks.io//docs/tools/pack/#install[the installation guide on buildpacks.io].
62+
You also need to install `pack` by following {url-buildpacks-docs}/for-platform-operators/how-to/integrate-ci/pack/#install[the installation guide on buildpacks.io].
6363

6464
Assuming an AOT processed Spring Boot executable jar built as `myproject-0.0.1-SNAPSHOT.jar` is in the `target` directory, run:
6565

spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/docs/antora/modules/gradle-plugin/pages/packaging-oci-image.adoc

+4-4
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ For more details, see also xref:packaging-oci-image.adoc#build-image.examples.do
105105
[[build-image.customization]]
106106
== Image Customizations
107107

108-
The plugin invokes a {url-buildpacks-docs}/concepts/components/builder/[builder] to orchestrate the generation of an image.
109-
The builder includes multiple {url-buildpacks-docs}/concepts/components/buildpack[buildpacks] that can inspect the application to influence the generated image.
108+
The plugin invokes a {url-buildpacks-docs}/for-app-developers/concepts/builder/[builder] to orchestrate the generation of an image.
109+
The builder includes multiple {url-buildpacks-docs}/for-app-developers/concepts/buildpack/[buildpacks] that can inspect the application to influence the generated image.
110110
By default, the plugin chooses a builder image.
111111
The name of the generated image is deduced from project properties.
112112

@@ -220,7 +220,7 @@ The value can be a named volume or a bind mount location.
220220
| `--createdDate`
221221
| A date that will be used to set the `Created` field in the generated image's metadata.
222222
The value must be a string in the ISO 8601 instant format, or `now` to use the current date and time.
223-
| A fixed date that enables https://buildpacks.io/docs/features/reproducibility/[build reproducibility].
223+
| A fixed date that enables {url-buildpacks-docs}/for-app-developers/concepts/reproducibility/[build reproducibility].
224224

225225
| `applicationDirectory`
226226
| `--applicationDirectory`
@@ -444,7 +444,7 @@ A path to a gzipped tar file containing buildpack content:
444444
* `\file:///path/to/buildpack.tgz`
445445
* `/path/to/buildpack.tgz`
446446

447-
An OCI image containing a https://buildpacks.io/docs/buildpack-author-guide/package-a-buildpack/[packaged buildpack]:
447+
An OCI image containing a {url-buildpacks-docs}/for-buildpack-authors/how-to/distribute-buildpacks/package-buildpack/[packaged buildpack]:
448448

449449
* `docker://example/buildpack`
450450
* `docker:///example/buildpack:latest`

spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/docs/antora/modules/maven-plugin/pages/build-image.adoc

+4-4
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ For more details, see also xref:build-image.adoc#build-image.examples.docker[exa
120120
[[build-image.customization]]
121121
== Image Customizations
122122

123-
The plugin invokes a {url-buildpacks-docs}/concepts/components/builder/[builder] to orchestrate the generation of an image.
124-
The builder includes multiple {url-buildpacks-docs}/concepts/components/buildpack[buildpacks] that can inspect the application to influence the generated image.
123+
The plugin invokes a {url-buildpacks-docs}/for-app-developers/concepts/builder/[builder] to orchestrate the generation of an image.
124+
The builder includes multiple {url-buildpacks-docs}/for-app-developers/concepts/buildpack/[buildpacks] that can inspect the application to influence the generated image.
125125
By default, the plugin chooses a builder image.
126126
The name of the generated image is deduced from project properties.
127127

@@ -226,7 +226,7 @@ The value can be a named volume or a bind mount location.
226226
(`spring-boot.build-image.createdDate`)
227227
| A date that will be used to set the `Created` field in the generated image's metadata.
228228
The value must be a string in the ISO 8601 instant format, or `now` to use the current date and time.
229-
| A fixed date that enables https://buildpacks.io/docs/features/reproducibility/[build reproducibility].
229+
| A fixed date that enables {url-buildpacks-docs}/for-app-developers/concepts/reproducibility/[build reproducibility].
230230

231231

232232
| `applicationDirectory` +
@@ -389,7 +389,7 @@ A path to a gzipped tar file containing buildpack content:
389389
* `\file:///path/to/buildpack.tgz`
390390
* `/path/to/buildpack.tgz`
391391

392-
An OCI image containing a https://buildpacks.io/docs/buildpack-author-guide/package-a-buildpack/[packaged buildpack]:
392+
An OCI image containing a {url-buildpacks-docs}/for-buildpack-authors/how-to/distribute-buildpacks/package-buildpack/[packaged buildpack]:
393393

394394
* `docker://example/buildpack`
395395
* `docker:///example/buildpack:latest`

0 commit comments

Comments
 (0)