Skip to content
This repository was archived by the owner on May 14, 2025. It is now read-only.

Commit 805c356

Browse files
ghillertericbottard
authored andcommitted
gh-1242 Remove shell version
1 parent 0441787 commit 805c356

File tree

4 files changed

+0
-16
lines changed

4 files changed

+0
-16
lines changed

spring-cloud-dataflow-rest-resource/src/main/java/org/springframework/cloud/dataflow/rest/resource/about/VersionInfo.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ public VersionInfo() {
3434
private Dependency implementation;
3535
private Dependency core;
3636
private Dependency dashboard;
37-
private Dependency shell;
3837

3938
private String commitId;
4039
private String shortCommitId;
@@ -62,12 +61,6 @@ public Dependency getDashboard() {
6261
public void setDashboard(Dependency dashboard) {
6362
this.dashboard = dashboard;
6463
}
65-
public Dependency getShell() {
66-
return shell;
67-
}
68-
public void setShell(Dependency shell) {
69-
this.shell = shell;
70-
}
7164

7265
public String getCommitId() {
7366
return commitId;

spring-cloud-dataflow-server-core/src/main/java/org/springframework/cloud/dataflow/server/config/VersionInfoProperties.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ public class VersionInfoProperties {
2828
public static final String VERSION_INFO_PREFIX = "spring.cloud.dataflow.version-info";
2929

3030
private String dataflowCoreVersion;
31-
private String dataflowShellVersion;
3231
private String dataflowDashboardVersion;
3332

3433
public String getDataflowCoreVersion() {
@@ -37,12 +36,6 @@ public String getDataflowCoreVersion() {
3736
public void setDataflowCoreVersion(String dataflowCoreVersion) {
3837
this.dataflowCoreVersion = dataflowCoreVersion;
3938
}
40-
public String getDataflowShellVersion() {
41-
return dataflowShellVersion;
42-
}
43-
public void setDataflowShellVersion(String dataflowShellVersion) {
44-
this.dataflowShellVersion = dataflowShellVersion;
45-
}
4639
public String getDataflowDashboardVersion() {
4740
return dataflowDashboardVersion;
4841
}

spring-cloud-dataflow-server-core/src/main/java/org/springframework/cloud/dataflow/server/controller/AboutController.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ public AboutResource getAboutResource() {
107107

108108
versionInfo.setImplementation(new Dependency(this.implementationName, this.implementationVersion));
109109
versionInfo.setCore(new Dependency("Spring Cloud Data Flow Core", versionInfoProperties.getDataflowCoreVersion()));
110-
versionInfo.setShell(new Dependency("Spring Cloud Data Flow Shell",versionInfoProperties.getDataflowShellVersion()));
111110
versionInfo.setDashboard(new Dependency("Spring Cloud Dataflow UI", versionInfoProperties.getDataflowDashboardVersion()));
112111

113112
if (this.gitProperties != null) {

spring-cloud-dataflow-server-core/src/main/resources/META-INF/dataflow-server-defaults.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ spring:
77
cloud:
88
dataflow:
99
version-info:
10-
dataflow-shell-version: "@spring-shell.version@"
1110
dataflow-dashboard-version: "@spring-cloud-dataflow-ui.version@"
1211
dataflow-core-version: "@project.version@"
1312
security:

0 commit comments

Comments
 (0)