Skip to content

Commit

Permalink
Rename spring-boot-layertools
Browse files Browse the repository at this point in the history
Rename `spring-boot-layertools` to `spring-boot-jarmode-layertools`.

Closes spring-projectsgh-19853
  • Loading branch information
philwebb committed Jan 23, 2020
1 parent 13f7db2 commit 71ce212
Show file tree
Hide file tree
Showing 27 changed files with 27 additions and 27 deletions.
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ include "spring-boot-project:spring-boot-tools:spring-boot-buildpack-platform"
include "spring-boot-project:spring-boot-tools:spring-boot-configuration-metadata"
include "spring-boot-project:spring-boot-tools:spring-boot-configuration-processor"
include "spring-boot-project:spring-boot-tools:spring-boot-gradle-plugin"
include "spring-boot-project:spring-boot-tools:spring-boot-layertools"
include "spring-boot-project:spring-boot-tools:spring-boot-jarmode-layertools"
include "spring-boot-project:spring-boot-tools:spring-boot-loader"
include "spring-boot-project:spring-boot-tools:spring-boot-loader-tools"
include "spring-boot-project:spring-boot-tools:spring-boot-maven-plugin"
Expand Down
2 changes: 1 addition & 1 deletion spring-boot-project/spring-boot-dependencies/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -1425,7 +1425,7 @@ bom {
"spring-boot-configuration-metadata",
"spring-boot-configuration-processor",
"spring-boot-devtools",
"spring-boot-layertools",
"spring-boot-jarmode-layertools",
"spring-boot-loader",
"spring-boot-loader-tools",
"spring-boot-properties-migrator",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package org.springframework.boot.layertools;
package org.springframework.boot.jarmode.layertools;

import java.util.ArrayList;
import java.util.Arrays;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package org.springframework.boot.layertools;
package org.springframework.boot.jarmode.layertools;

import java.io.File;
import java.nio.file.Paths;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package org.springframework.boot.layertools;
package org.springframework.boot.jarmode.layertools;

import java.io.File;
import java.io.FileInputStream;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package org.springframework.boot.layertools;
package org.springframework.boot.jarmode.layertools;

import java.io.PrintStream;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package org.springframework.boot.layertools;
package org.springframework.boot.jarmode.layertools;

import java.util.ArrayList;
import java.util.Collections;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package org.springframework.boot.layertools;
package org.springframework.boot.jarmode.layertools;

import java.io.FileNotFoundException;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package org.springframework.boot.layertools;
package org.springframework.boot.jarmode.layertools;

import java.util.ArrayDeque;
import java.util.ArrayList;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package org.springframework.boot.layertools;
package org.springframework.boot.jarmode.layertools;

import java.util.Iterator;
import java.util.zip.ZipEntry;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package org.springframework.boot.layertools;
package org.springframework.boot.jarmode.layertools;

import java.io.PrintStream;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
/**
* JarMode support for layertools.
*/
package org.springframework.boot.layertools;
package org.springframework.boot.jarmode.layertools;
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
org.springframework.boot.loader.jarmode.JarMode=\
org.springframework.boot.jarmode.layertools.LayerToolsJarMode
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package org.springframework.boot.layertools;
package org.springframework.boot.jarmode.layertools;

import java.util.ArrayDeque;
import java.util.Arrays;
Expand All @@ -24,9 +24,9 @@
import org.assertj.core.api.InstanceOfAssertFactories;
import org.junit.jupiter.api.Test;

import org.springframework.boot.layertools.Command.Option;
import org.springframework.boot.layertools.Command.Options;
import org.springframework.boot.layertools.Command.Parameters;
import org.springframework.boot.jarmode.layertools.Command.Option;
import org.springframework.boot.jarmode.layertools.Command.Options;
import org.springframework.boot.jarmode.layertools.Command.Parameters;

import static org.assertj.core.api.Assertions.as;
import static org.assertj.core.api.Assertions.assertThat;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package org.springframework.boot.layertools;
package org.springframework.boot.jarmode.layertools;

import java.io.File;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package org.springframework.boot.layertools;
package org.springframework.boot.jarmode.layertools;

import java.io.File;
import java.io.FileOutputStream;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package org.springframework.boot.layertools;
package org.springframework.boot.jarmode.layertools;

import java.io.File;
import java.util.Arrays;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package org.springframework.boot.layertools;
package org.springframework.boot.jarmode.layertools;

import java.util.zip.ZipEntry;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package org.springframework.boot.layertools;
package org.springframework.boot.jarmode.layertools;

import java.util.zip.ZipEntry;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package org.springframework.boot.layertools;
package org.springframework.boot.jarmode.layertools;

import java.io.File;
import java.io.PrintStream;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package org.springframework.boot.layertools;
package org.springframework.boot.jarmode.layertools;

import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package org.springframework.boot.layertools;
package org.springframework.boot.jarmode.layertools;

import java.io.ByteArrayOutputStream;
import java.io.IOException;
Expand All @@ -27,7 +27,7 @@
import org.assertj.core.api.AssertProvider;
import org.assertj.core.api.Assertions;

import org.springframework.boot.layertools.TestPrintStream.PrintStreamAssert;
import org.springframework.boot.jarmode.layertools.TestPrintStream.PrintStreamAssert;
import org.springframework.util.FileCopyUtils;

/**
Expand Down

This file was deleted.

0 comments on commit 71ce212

Please sign in to comment.