Skip to content

Commit ba032db

Browse files
committed
Fix links to GitHub source files
Closes gh-48394
1 parent ba02e89 commit ba032db

File tree

6 files changed

+13
-12
lines changed

6 files changed

+13
-12
lines changed

documentation/spring-boot-docs/src/docs/antora/modules/ROOT/pages/installing.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ You can download the Spring CLI distribution from one of the following locations
9090
endif::[]
9191

9292

93-
Once downloaded, follow the {url-github-raw}/spring-boot-project/spring-boot-tools/spring-boot-cli/src/main/content/INSTALL.txt[INSTALL.txt] instructions from the unpacked archive.
93+
Once downloaded, follow the {url-github-raw}/cli/spring-boot-tools/spring-boot-cli/src/main/content/INSTALL.txt[INSTALL.txt] instructions from the unpacked archive.
9494
In summary, there is a `spring` script (`spring.bat` for Windows) in a `bin/` directory in the `.zip` file.
9595
Alternatively, you can use `java -jar` with the `.jar` file (the script helps you to be sure that the classpath is set correctly).
9696

documentation/spring-boot-docs/src/docs/antora/modules/appendix/pages/dependency-versions/properties.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
= Version Properties
33

44
The following table provides all properties that can be used to override the versions managed by Spring Boot.
5-
Browse the {code-spring-boot}/spring-boot-project/spring-boot-dependencies/build.gradle[`spring-boot-dependencies` build.gradle] for a complete list of dependencies.
5+
Browse the {code-spring-boot}/platform/spring-boot-dependencies/build.gradle[`spring-boot-dependencies` build.gradle] for a complete list of dependencies.
66
You can learn how to customize these versions in your application in the xref:build-tool-plugin:index.adoc[] documentation.
77

88
include::partial$dependency-versions/documented-properties.adoc[]

documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/actuator/enabling.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[[actuator.enabling]]
22
= Enabling Production-ready Features
33

4-
The {code-spring-boot}/spring-boot-project/spring-boot-actuator[`spring-boot-actuator`] module provides all of Spring Boot's production-ready features.
4+
The {code-spring-boot}/module/spring-boot-actuator[`spring-boot-actuator`] module provides all of Spring Boot's production-ready features.
55
The recommended way to enable the features is to add a dependency on the `spring-boot-starter-actuator` starter.
66

77
.Definition of Actuator

documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/features/developing-auto-configuration.adoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ Additional javadoc:org.springframework.context.annotation.Conditional[format=ann
1818
Usually, auto-configuration classes use javadoc:org.springframework.boot.autoconfigure.condition.ConditionalOnClass[format=annotation] and javadoc:org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean[format=annotation] annotations.
1919
This ensures that auto-configuration applies only when relevant classes are found and when you have not declared your own javadoc:org.springframework.context.annotation.Configuration[format=annotation].
2020

21-
You can browse the source code of {code-spring-boot-autoconfigure-src}[`spring-boot-autoconfigure`] to see the javadoc:org.springframework.boot.autoconfigure.AutoConfiguration[format=annotation] classes that Spring provides (see the {code-spring-boot}/spring-boot-project/spring-boot-autoconfigure/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports[`META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports`] file).
21+
You can browse the source code of {code-spring-boot-autoconfigure-src}[`spring-boot-autoconfigure`] to see the core javadoc:org.springframework.boot.autoconfigure.AutoConfiguration[format=annotation] classes that Spring provides (see the {code-spring-boot}/core/spring-boot-autoconfigure/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports[`META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports`] file).
22+
You can also look at the equivalent file in other modules to see the auto-configurations that they provide.
2223

2324

2425

documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/features/logging.adoc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -416,9 +416,9 @@ If you use Logback, the following properties are also transferred:
416416
All the supported logging systems can consult System properties when parsing their configuration files.
417417
See the default configurations in `spring-boot.jar` for examples:
418418

419-
* {code-spring-boot}/spring-boot-project/spring-boot/src/main/resources/org/springframework/boot/logging/logback/defaults.xml[Logback]
420-
* {code-spring-boot}/spring-boot-project/spring-boot/src/main/resources/org/springframework/boot/logging/log4j2/log4j2.xml[Log4j 2]
421-
* {code-spring-boot}/spring-boot-project/spring-boot/src/main/resources/org/springframework/boot/logging/java/logging-file.properties[Java Util logging]
419+
* {code-spring-boot}/core/spring-boot/src/main/resources/org/springframework/boot/logging/logback/defaults.xml[Logback]
420+
* {code-spring-boot}/core/spring-boot/src/main/resources/org/springframework/boot/logging/log4j2/log4j2.xml[Log4j 2]
421+
* {code-spring-boot}/core/spring-boot/src/main/resources/org/springframework/boot/logging/java/logging-file.properties[Java Util logging]
422422

423423
[TIP]
424424
====
@@ -469,8 +469,8 @@ Logback::
469469
+
470470
You can also refer to the default configurations included in Spring Boot:
471471
+
472-
* {code-spring-boot}/spring-boot-project/spring-boot/src/main/resources/org/springframework/boot/logging/logback/structured-console-appender.xml[Logback Structured Console Appender]
473-
* {code-spring-boot}/spring-boot-project/spring-boot/src/main/resources/org/springframework/boot/logging/logback/structured-file-appender.xml[Logback Structured File Appender]
472+
* {code-spring-boot}/core/spring-boot/src/main/resources/org/springframework/boot/logging/logback/structured-console-appender.xml[Logback Structured Console Appender]
473+
* {code-spring-boot}/core/spring-boot/src/main/resources/org/springframework/boot/logging/logback/structured-file-appender.xml[Logback Structured File Appender]
474474
Log4j2::
475475
+
476476
[source,xml]
@@ -481,8 +481,8 @@ Log4j2::
481481
+
482482
You can also refer to the default configurations included in Spring Boot:
483483
+
484-
* {code-spring-boot}/spring-boot-project/spring-boot/src/main/resources/org/springframework/boot/logging/log4j2/log4j2.xml[Log4j2 Console Appender]
485-
* {code-spring-boot}/spring-boot-project/spring-boot/src/main/resources/org/springframework/boot/logging/log4j2/log4j2-file.xml[Log4j2 Console and File Appender]
484+
* {code-spring-boot}/core/spring-boot/src/main/resources/org/springframework/boot/logging/log4j2/log4j2.xml[Log4j2 Console Appender]
485+
* {code-spring-boot}/core/spring-boot/src/main/resources/org/springframework/boot/logging/log4j2/log4j2-file.xml[Log4j2 Console and File Appender]
486486
======
487487

488488

documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/using/build-systems.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,4 +148,4 @@ include::ROOT:partial$starters/technical-starters.adoc[]
148148

149149
To learn how to swap technical facets, please see the how-to documentation for xref:how-to:webserver.adoc#howto.webserver.use-another[swapping web server] and xref:how-to:logging.adoc#howto.logging.log4j[logging system].
150150

151-
TIP: For a list of additional community contributed starters, see the {code-spring-boot-latest}/spring-boot-project/spring-boot-starters/README.adoc[README file] in the `spring-boot-starters` module on GitHub.
151+
TIP: For a list of additional community contributed starters, see the {code-spring-boot-latest}/starter/README.adoc[README file] in the `spring-boot-starters` module on GitHub.

0 commit comments

Comments
 (0)