Skip to content

Commit f67db3d

Browse files
committed
Move spring-boot-cli into spring-boot-tools
Closes gh-32492
1 parent 0c5d0ac commit f67db3d

File tree

136 files changed

+3
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

136 files changed

+3
-3
lines changed

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ include "spring-boot-project:spring-boot-parent"
5454
include "spring-boot-project:spring-boot-tools:spring-boot-antlib"
5555
include "spring-boot-project:spring-boot-tools:spring-boot-autoconfigure-processor"
5656
include "spring-boot-project:spring-boot-tools:spring-boot-buildpack-platform"
57+
include "spring-boot-project:spring-boot-tools:spring-boot-cli"
5758
include "spring-boot-project:spring-boot-tools:spring-boot-configuration-metadata"
5859
include "spring-boot-project:spring-boot-tools:spring-boot-configuration-processor"
5960
include "spring-boot-project:spring-boot-tools:spring-boot-gradle-plugin"
@@ -68,7 +69,6 @@ include "spring-boot-project:spring-boot"
6869
include "spring-boot-project:spring-boot-autoconfigure"
6970
include "spring-boot-project:spring-boot-actuator"
7071
include "spring-boot-project:spring-boot-actuator-autoconfigure"
71-
include "spring-boot-project:spring-boot-cli"
7272
include "spring-boot-project:spring-boot-devtools"
7373
include "spring-boot-project:spring-boot-docs"
7474
include "spring-boot-project:spring-boot-test"

spring-boot-project/spring-boot-docs/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ dependencies {
6666
implementation(project(path: ":spring-boot-project:spring-boot-actuator"))
6767
implementation(project(path: ":spring-boot-project:spring-boot-actuator-autoconfigure"))
6868
implementation(project(path: ":spring-boot-project:spring-boot-autoconfigure"))
69-
implementation(project(path: ":spring-boot-project:spring-boot-cli"))
69+
implementation(project(path: ":spring-boot-project:spring-boot-tools:spring-boot-cli"))
7070
implementation(project(path: ":spring-boot-project:spring-boot-tools:spring-boot-loader-tools"))
7171
implementation(project(path: ":spring-boot-project:spring-boot-test"))
7272
implementation(project(path: ":spring-boot-project:spring-boot-test-autoconfigure"))

spring-boot-project/spring-boot-cli/src/intTest/java/org/springframework/boot/cli/infrastructure/Versions.java renamed to spring-boot-project/spring-boot-tools/spring-boot-cli/src/intTest/java/org/springframework/boot/cli/infrastructure/Versions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ private Versions() {
3232

3333
static String getBootVersion() {
3434
Properties gradleProperties = new Properties();
35-
try (FileInputStream input = new FileInputStream("../../gradle.properties")) {
35+
try (FileInputStream input = new FileInputStream("../../../gradle.properties")) {
3636
gradleProperties.load(input);
3737
return gradleProperties.getProperty("version");
3838
}

0 commit comments

Comments
 (0)