Skip to content

Commit 2098e23

Browse files
committed
Change package names zero->boot
* actuator -> boot-ops * cli -> boot-cli * launcher -> boot-load * autoconfig -> boot-config * bootstrap -> boot-strap * starters -> boot-up [#54095231] [bs-253] Refactor Zero->Boot
1 parent b2873fb commit 2098e23

File tree

609 files changed

+1686
-1626
lines changed

Some content is hidden

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

609 files changed

+1686
-1626
lines changed

README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ or above.
4343

4444
An `alias` can be used for the Spring Zero command line tool:
4545

46-
$ alias spring="java -jar ~/.m2/repository/org/springframework/zero/spring-cli/0.5.0.BUILD-SNAPSHOT/spring-cli-0.5.0.BUILD-SNAPSHOT.jar"
46+
$ alias spring="java -jar ~/.m2/repository/org/springframework/boot/spring-cli/0.5.0.BUILD-SNAPSHOT/spring-cli-0.5.0.BUILD-SNAPSHOT.jar"
4747

4848
_Also see [docs/CONTRIBUTING](docs/CONTRIBUTING.md) if you want to submit pull requests._
4949

@@ -167,22 +167,22 @@ Groovy samples for use with the command line application are available in
167167
[spring-cli/samples](spring-cli/samples/#). To run the CLI samples type
168168
`spring run <sample>.groovy` from samples directory.
169169

170-
Java samples are available in [spring-zero-sample](spring-zero-samples/#) and should
170+
Java samples are available in [spring-boot-sample](spring-boot-samples/#) and should
171171
be build with maven and run use `java -jar target/<sample>.jar`. The following java
172172
samples are provided:
173173

174-
* spring-zero-sample-simple - A simple command line application
175-
* spring-zero-sample-tomcat - Embedded Tomcat
176-
* spring-zero-sample-jetty - Embedded Jetty
177-
* spring-zero-sample-actuator - Simple REST service with production features
178-
* spring-zero-sample-actuator-ui - A web UI example with production features
179-
* spring-zero-sample-web-ui - A thymeleaf web application
174+
* spring-boot-sample-simple - A simple command line application
175+
* spring-boot-sample-tomcat - Embedded Tomcat
176+
* spring-boot-sample-jetty - Embedded Jetty
177+
* spring-boot-sample-actuator - Simple REST service with production features
178+
* spring-boot-sample-actuator-ui - A web UI example with production features
179+
* spring-boot-sample-web-ui - A thymeleaf web application
180180
* spring-sample-batch - Define and run a Batch job in a few lines of code
181181
* spring-sample-data-jpa - Spring Data JPA + Hibernate + HSQLDB
182-
* spring-zero-sample-integration - A spring integration application
183-
* spring-zero-sample-profile - example showing Spring's `@profile` support
184-
* spring-zero-sample-traditional - shows Spring Zero with more traditional WAR packaging
182+
* spring-boot-sample-integration - A spring integration application
183+
* spring-boot-sample-profile - example showing Spring's `@profile` support
184+
* spring-boot-sample-traditional - shows Spring Zero with more traditional WAR packaging
185185
(but also executable using `java -jar`)
186-
* spring-zero-sample-xml - Example show how Spring Zero can be mixed with trditional XML
186+
* spring-boot-sample-xml - Example show how Spring Zero can be mixed with trditional XML
187187
configuration
188188

docs/CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ changes just won't be automatically formatted._
4545

4646
With the requisite eclipse plugins installed you can select
4747
`import existing maven projects` from the `file` menu to import the code. You will
48-
need to import the root `spring-zero` pom and the `spring-zero-samples` pom separately.
48+
need to import the root `spring-boot` pom and the `spring-boot-samples` pom separately.
4949

5050

5151
### Importing into eclipse without m2eclipse

pom.xml

+14-14
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
5-
<groupId>org.springframework.zero</groupId>
6-
<artifactId>spring-zero</artifactId>
5+
<groupId>org.springframework.boot</groupId>
6+
<artifactId>spring-boot</artifactId>
77
<version>0.5.0.BUILD-SNAPSHOT</version>
88
<packaging>pom</packaging>
99
<prerequisites>
@@ -25,9 +25,9 @@
2525
<reactor.version>1.0.0.M1</reactor.version>
2626
</properties>
2727
<scm>
28-
<url>http://github.com/SpringSource/spring-bootstrap</url>
29-
<connection>scm:git:git://github.com/SpringSource/spring-bootstrap.git</connection>
30-
<developerConnection>scm:git:ssh://[email protected]/SpringSource/spring-bootstrap.git</developerConnection>
28+
<url>http://github.com/SpringSource/spring-boot</url>
29+
<connection>scm:git:git://github.com/SpringSource/spring-boot.git</connection>
30+
<developerConnection>scm:git:ssh://[email protected]/SpringSource/spring-boot.git</developerConnection>
3131
</scm>
3232
<developers>
3333
<developer>
@@ -37,14 +37,14 @@
3737
</developer>
3838
</developers>
3939
<modules>
40-
<module>spring-bootstrap</module>
41-
<module>spring-autoconfigure</module>
42-
<module>spring-starters</module>
43-
<module>spring-actuator</module>
44-
<module>spring-launcher</module>
45-
<module>spring-package-maven-plugin</module>
46-
<module>spring-cli</module>
47-
<module>spring-zero-integration-tests</module>
40+
<module>spring-boot-strap</module>
41+
<module>spring-boot-config</module>
42+
<module>spring-boot-ops</module>
43+
<module>spring-boot-load</module>
44+
<module>spring-boot-maven-plugin</module>
45+
<module>spring-boot-ups</module>
46+
<module>spring-boot-cli</module>
47+
<module>spring-boot-integration-tests</module>
4848
</modules>
4949
<build>
5050
<pluginManagement>
@@ -663,7 +663,7 @@
663663
<downloadUrl>http://www.springsource.com/download/community</downloadUrl>
664664
<site>
665665
<id>spring-docs</id>
666-
<url>scp://static.springframework.org/var/www/domains/springframework.org/static/htdocs/spring-bootstrap/docs/${project.version}</url>
666+
<url>scp://static.springframework.org/var/www/domains/springframework.org/static/htdocs/spring-boot/docs/${project.version}</url>
667667
</site>
668668
<repository>
669669
<id>spring-repo-release</id>

spring-actuator/src/main/resources/META-INF/spring.factories

-11
This file was deleted.

spring-autoconfigure/src/main/resources/META-INF/spring.factories

-15
This file was deleted.
File renamed without changes.

spring-cli/pom.xml spring-boot-cli/pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55
<parent>
6-
<groupId>org.springframework.zero</groupId>
7-
<artifactId>spring-zero</artifactId>
6+
<groupId>org.springframework.boot</groupId>
7+
<artifactId>spring-boot</artifactId>
88
<version>0.5.0.BUILD-SNAPSHOT</version>
99
</parent>
10-
<artifactId>spring-cli</artifactId>
10+
<artifactId>spring-boot-cli</artifactId>
1111
<packaging>jar</packaging>
1212
<properties>
1313
<main.basedir>${basedir}/..</main.basedir>
14-
<start-class>org.springframework.cli.SpringCli</start-class>
14+
<start-class>org.springframework.boot.cli.SpringCli</start-class>
1515
</properties>
1616
<dependencies>
1717
<!-- Compile -->
File renamed without changes.
File renamed without changes.

spring-cli/samples/actuator.groovy spring-boot-cli/samples/ops.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package org.test
22

3-
@Grab("org.springframework.zero:spring-actuator:0.5.0.BUILD-SNAPSHOT")
3+
@Grab("org.springframework.boot:spring-boot-up-ops:0.5.0.BUILD-SNAPSHOT")
44

55
@Controller
66
class SampleController {
File renamed without changes.
File renamed without changes.
File renamed without changes.

spring-cli/samples/template.groovy spring-boot-cli/samples/template.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package org.test
22

3-
import static org.springframework.cli.template.GroovyTemplate.template;
3+
import static org.springframework.boot.cli.template.GroovyTemplate.template;
44

55
@Component
66
class Example implements CommandLineRunner {
File renamed without changes.
File renamed without changes.

spring-cli/src/main/assembly/descriptor.xml spring-boot-cli/src/main/assembly/descriptor.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<dependencySets>
2424
<dependencySet>
2525
<includes>
26-
<include>org.springframework.zero:spring-cli:jar:*</include>
26+
<include>org.springframework.boot:spring-cli:jar:*</include>
2727
</includes>
2828
<outputDirectory>lib</outputDirectory>
2929
</dependencySet>

spring-cli/src/main/java/org/springframework/cli/Command.java spring-boot-cli/src/main/java/org/springframework/boot/cli/Command.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.cli;
17+
package org.springframework.boot.cli;
1818

1919
/**
2020
* A single command that can be run from the CLI.

spring-cli/src/main/java/org/springframework/cli/CommandFactory.java spring-boot-cli/src/main/java/org/springframework/boot/cli/CommandFactory.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.cli;
17+
package org.springframework.boot.cli;
1818

1919
import java.util.Collection;
2020
import java.util.ServiceLoader;

spring-cli/src/main/java/org/springframework/cli/Log.java spring-boot-cli/src/main/java/org/springframework/boot/cli/Log.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.cli;
17+
package org.springframework.boot.cli;
1818

1919
/**
2020
* Simple logger used by the CLI.

spring-cli/src/main/java/org/springframework/cli/NoSuchCommandException.java spring-boot-cli/src/main/java/org/springframework/boot/cli/NoSuchCommandException.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.cli;
17+
package org.springframework.boot.cli;
1818

1919
/**
2020
* Exception thrown when an unknown command is specified.

spring-cli/src/main/java/org/springframework/cli/SpringCli.java spring-boot-cli/src/main/java/org/springframework/boot/cli/SpringCli.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.cli;
17+
package org.springframework.boot.cli;
1818

1919
import java.util.ArrayList;
2020
import java.util.Arrays;
@@ -76,7 +76,7 @@ public void setCommands(List<? extends Command> commands) {
7676
/**
7777
* Run the CLI and handle and errors.
7878
* @param args the input arguments
79-
* @return a return status code (non zero is used to indicate an error)
79+
* @return a return status code (non boot is used to indicate an error)
8080
*/
8181
public int runAndHandleErrors(String... args) {
8282
String[] argsWithoutDebugFlags = removeDebugFlags(args);

spring-cli/src/main/java/org/springframework/cli/SpringCliException.java spring-boot-cli/src/main/java/org/springframework/boot/cli/SpringCliException.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.cli;
17+
package org.springframework.boot.cli;
1818

1919
import java.util.Arrays;
2020
import java.util.Collections;

spring-cli/src/main/java/org/springframework/cli/command/AbstractCommand.java spring-boot-cli/src/main/java/org/springframework/boot/cli/command/AbstractCommand.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.cli.command;
17+
package org.springframework.boot.cli.command;
1818

19-
import org.springframework.cli.Command;
19+
import org.springframework.boot.cli.Command;
2020

2121
/**
2222
* Abstract {@link Command} implementation.

spring-cli/src/main/java/org/springframework/cli/command/CleanCommand.java spring-boot-cli/src/main/java/org/springframework/boot/cli/command/CleanCommand.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.cli.command;
17+
package org.springframework.boot.cli.command;
1818

1919
import java.io.File;
2020
import java.util.ArrayList;
@@ -24,8 +24,8 @@
2424
import joptsimple.OptionSpec;
2525

2626
import org.apache.ivy.util.FileUtil;
27-
import org.springframework.cli.Command;
28-
import org.springframework.cli.Log;
27+
import org.springframework.boot.cli.Command;
28+
import org.springframework.boot.cli.Log;
2929

3030
/**
3131
* {@link Command} to 'clean' up grapes, removing cached dependencies and forcing a
@@ -80,8 +80,8 @@ private void clean(OptionSet options, File root, Layout layout) {
8080
return;
8181
}
8282
ArrayList<Object> specs = new ArrayList<Object>(options.nonOptionArguments());
83-
if (!specs.contains("org.springframework.zero") && layout == Layout.IVY) {
84-
specs.add(0, "org.springframework.zero");
83+
if (!specs.contains("org.springframework.boot") && layout == Layout.IVY) {
84+
specs.add(0, "org.springframework.boot");
8585
}
8686
for (Object spec : specs) {
8787
if (spec instanceof String) {
@@ -103,7 +103,7 @@ private void clean(OptionSet options, File root, Layout layout, String spec) {
103103
return;
104104
}
105105

106-
if (options.has(this.allOption) || group.equals("org.springframework.zero")) {
106+
if (options.has(this.allOption) || group.equals("org.springframework.boot")) {
107107
delete(file);
108108
return;
109109
}

spring-cli/src/main/java/org/springframework/cli/command/CreateCommand.java spring-boot-cli/src/main/java/org/springframework/boot/cli/command/CreateCommand.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.cli.command;
17+
package org.springframework.boot.cli.command;
1818

1919
import joptsimple.OptionSet;
2020

21-
import org.springframework.cli.Command;
21+
import org.springframework.boot.cli.Command;
2222

2323
import static java.util.Arrays.asList;
2424

spring-cli/src/main/java/org/springframework/cli/command/DefaultCommandFactory.java spring-boot-cli/src/main/java/org/springframework/boot/cli/command/DefaultCommandFactory.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.cli.command;
17+
package org.springframework.boot.cli.command;
1818

1919
import java.util.Arrays;
2020
import java.util.Collection;
2121
import java.util.List;
2222

23-
import org.springframework.cli.Command;
24-
import org.springframework.cli.CommandFactory;
23+
import org.springframework.boot.cli.Command;
24+
import org.springframework.boot.cli.CommandFactory;
2525

2626
/**
2727
* Default implementation of {@link CommandFactory}.

spring-cli/src/main/java/org/springframework/cli/command/OptionHandler.java spring-boot-cli/src/main/java/org/springframework/boot/cli/command/OptionHandler.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.cli.command;
17+
package org.springframework.boot.cli.command;
1818

1919
import groovy.lang.Closure;
2020

spring-cli/src/main/java/org/springframework/cli/command/OptionParsingCommand.java spring-boot-cli/src/main/java/org/springframework/boot/cli/command/OptionParsingCommand.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.cli.command;
17+
package org.springframework.boot.cli.command;
1818

19-
import org.springframework.cli.Command;
19+
import org.springframework.boot.cli.Command;
2020

2121
/**
2222
* Base class for a {@link Command} that pare options using an {@link OptionHandler}.

spring-cli/src/main/java/org/springframework/cli/command/RunCommand.java spring-boot-cli/src/main/java/org/springframework/boot/cli/command/RunCommand.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.cli.command;
17+
package org.springframework.boot.cli.command;
1818

1919
import java.awt.Desktop;
2020
import java.io.File;
@@ -25,9 +25,9 @@
2525
import joptsimple.OptionSet;
2626
import joptsimple.OptionSpec;
2727

28-
import org.springframework.cli.Command;
29-
import org.springframework.cli.runner.SpringApplicationRunner;
30-
import org.springframework.cli.runner.SpringApplicationRunnerConfiguration;
28+
import org.springframework.boot.cli.Command;
29+
import org.springframework.boot.cli.runner.SpringApplicationRunner;
30+
import org.springframework.boot.cli.runner.SpringApplicationRunnerConfiguration;
3131

3232
import static java.util.Arrays.asList;
3333

spring-cli/src/main/java/org/springframework/cli/command/ScriptCommand.java spring-boot-cli/src/main/java/org/springframework/boot/cli/command/ScriptCommand.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.cli.command;
17+
package org.springframework.boot.cli.command;
1818

1919
import groovy.lang.Closure;
2020
import groovy.lang.GroovyObjectSupport;
@@ -30,9 +30,9 @@
3030

3131
import org.apache.ivy.util.FileUtil;
3232
import org.codehaus.groovy.control.CompilationFailedException;
33-
import org.springframework.cli.Command;
34-
import org.springframework.cli.compiler.GroovyCompiler;
35-
import org.springframework.cli.compiler.GroovyCompilerConfiguration;
33+
import org.springframework.boot.cli.Command;
34+
import org.springframework.boot.cli.compiler.GroovyCompiler;
35+
import org.springframework.boot.cli.compiler.GroovyCompilerConfiguration;
3636

3737
/**
3838
* {@link Command} to run a Groovy script.

0 commit comments

Comments
 (0)