Fix package name for boot-loader-tools

Issue: #53129653
This commit is contained in:
Phillip Webb 2013-07-29 22:29:25 -07:00
parent d1c31445ec
commit 826f42746a
17 changed files with 33 additions and 24 deletions

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.launcher.tools;
package org.springframework.boot.loader.tools;
import java.io.ByteArrayInputStream;
import java.io.File;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.launcher.tools;
package org.springframework.boot.loader.tools;
/**
* Strategy interface used to determine the layout for a particular type of archive.

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.launcher.tools;
package org.springframework.boot.loader.tools;
import java.io.File;
import java.util.Collections;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.launcher.tools;
package org.springframework.boot.loader.tools;
import java.io.IOException;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.launcher.tools;
package org.springframework.boot.loader.tools;
import java.io.File;
import java.io.IOException;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.launcher.tools;
package org.springframework.boot.loader.tools;
/**
* The scope of a library. The common {@link #COMPILE}, {@link #RUNTIME} and

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.launcher.tools;
package org.springframework.boot.loader.tools;
import java.io.BufferedInputStream;
import java.io.File;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.launcher.tools;
package org.springframework.boot.loader.tools;
import java.io.File;
import java.io.IOException;

View File

@ -14,13 +14,16 @@
* limitations under the License.
*/
package org.springframework.boot.launcher.tools;
package org.springframework.boot.loader.tools;
import java.io.File;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import org.springframework.boot.loader.tools.Layout;
import org.springframework.boot.loader.tools.Layouts;
import org.springframework.boot.loader.tools.LibraryScope;
import static org.hamcrest.Matchers.equalTo;
import static org.hamcrest.Matchers.instanceOf;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.launcher.tools;
package org.springframework.boot.loader.tools;
import java.io.IOException;
@ -22,8 +22,9 @@ import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TemporaryFolder;
import org.springframework.boot.launcher.tools.sample.ClassWithMainMethod;
import org.springframework.boot.launcher.tools.sample.ClassWithoutMainMethod;
import org.springframework.boot.loader.tools.MainClassFinder;
import org.springframework.boot.loader.tools.sample.ClassWithMainMethod;
import org.springframework.boot.loader.tools.sample.ClassWithoutMainMethod;
import static org.hamcrest.Matchers.equalTo;
import static org.junit.Assert.assertThat;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.launcher.tools;
package org.springframework.boot.loader.tools;
import java.io.File;
import java.io.IOException;
@ -27,8 +27,13 @@ import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import org.junit.rules.TemporaryFolder;
import org.springframework.boot.launcher.tools.sample.ClassWithMainMethod;
import org.springframework.boot.launcher.tools.sample.ClassWithoutMainMethod;
import org.springframework.boot.loader.tools.Layout;
import org.springframework.boot.loader.tools.Libraries;
import org.springframework.boot.loader.tools.LibraryCallback;
import org.springframework.boot.loader.tools.LibraryScope;
import org.springframework.boot.loader.tools.Repackager;
import org.springframework.boot.loader.tools.sample.ClassWithMainMethod;
import org.springframework.boot.loader.tools.sample.ClassWithoutMainMethod;
import static org.hamcrest.Matchers.equalTo;
import static org.junit.Assert.assertThat;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.launcher.tools;
package org.springframework.boot.loader.tools;
import java.io.File;
import java.io.FileInputStream;

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.launcher.tools.sample;
package org.springframework.boot.loader.tools.sample;
/**
* Sample class with a main method.

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.boot.launcher.tools.sample;
package org.springframework.boot.loader.tools.sample;
/**
* Sample class without a main method.

View File

@ -23,9 +23,9 @@ import java.util.Map;
import java.util.Set;
import org.apache.maven.artifact.Artifact;
import org.springframework.boot.launcher.tools.Libraries;
import org.springframework.boot.launcher.tools.LibraryCallback;
import org.springframework.boot.launcher.tools.LibraryScope;
import org.springframework.boot.loader.tools.Libraries;
import org.springframework.boot.loader.tools.LibraryCallback;
import org.springframework.boot.loader.tools.LibraryScope;
/**
* {@link Libraries} backed by Maven {@link Artifact}s

View File

@ -29,8 +29,8 @@ import org.apache.maven.plugins.annotations.Parameter;
import org.apache.maven.plugins.annotations.ResolutionScope;
import org.apache.maven.project.MavenProject;
import org.apache.maven.project.MavenProjectHelper;
import org.springframework.boot.launcher.tools.Libraries;
import org.springframework.boot.launcher.tools.Repackager;
import org.springframework.boot.loader.tools.Libraries;
import org.springframework.boot.loader.tools.Repackager;
/**
* MOJO that can can be used to repackage existing JAR and WAR archives so that they can

View File

@ -35,7 +35,7 @@ import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import org.apache.maven.plugins.annotations.ResolutionScope;
import org.apache.maven.project.MavenProject;
import org.springframework.boot.launcher.tools.MainClassFinder;
import org.springframework.boot.loader.tools.MainClassFinder;
/**
* MOJO that can be used to run a executable archive application directly from Maven.