Renamed packages

Issue: #54095231
This commit is contained in:
Phillip Webb
2013-07-26 14:10:38 -07:00
parent 3f2bb03fb8
commit b665a2bb1d
332 changed files with 785 additions and 826 deletions

View File

@@ -43,6 +43,6 @@ public class ExecutableJarHelper implements ArchiveHelper {
@Override
public String getLauncherClass() {
return "org.springframework.boot.load.JarLauncher";
return "org.springframework.boot.loader.JarLauncher";
}
}

View File

@@ -46,6 +46,6 @@ public class ExecutableWarHelper implements ArchiveHelper {
@Override
public String getLauncherClass() {
return "org.springframework.boot.load.WarLauncher";
return "org.springframework.boot.loader.WarLauncher";
}
}

View File

@@ -109,14 +109,14 @@ public class Verify {
assertHasEntryNameStartingWith(entries, "lib/spring-core");
assertHasEntryNameStartingWith(entries, "lib/javax.servlet-api-3.0.1.jar");
assertTrue("Unpacked launcher classes", entries.containsKey("org/"
+ "springframework/boot/load/JarLauncher.class"));
+ "springframework/boot/loader/JarLauncher.class"));
assertTrue("Own classes", entries.containsKey("org/"
+ "test/SampleApplication.class"));
}
@Override
protected void verifyManifest(Manifest manifest) throws Exception {
assertEquals("org.springframework.boot.load.JarLauncher", manifest
assertEquals("org.springframework.boot.loader.JarLauncher", manifest
.getMainAttributes().getValue("Main-Class"));
assertEquals(this.main, manifest.getMainAttributes().getValue("Start-Class"));
assertEquals("Foo", manifest.getMainAttributes().getValue("Not-Used"));
@@ -138,7 +138,7 @@ public class Verify {
assertHasEntryNameStartingWith(entries,
"WEB-INF/lib-provided/javax.servlet-api-3.0.1.jar");
assertTrue("Unpacked launcher classes", entries.containsKey("org/"
+ "springframework/boot/load/JarLauncher.class"));
+ "springframework/boot/loader/JarLauncher.class"));
assertTrue("Own classes", entries.containsKey("WEB-INF/classes/org/"
+ "test/SampleApplication.class"));
assertTrue("Web content", entries.containsKey("index.html"));
@@ -146,7 +146,7 @@ public class Verify {
@Override
protected void verifyManifest(Manifest manifest) throws Exception {
assertEquals("org.springframework.boot.load.WarLauncher", manifest
assertEquals("org.springframework.boot.loader.WarLauncher", manifest
.getMainAttributes().getValue("Main-Class"));
assertEquals("org.test.SampleApplication", manifest.getMainAttributes()
.getValue("Start-Class"));