Renamed some projects and polish POMs

Issue: #54095231
This commit is contained in:
Phillip Webb
2013-07-26 12:30:54 -07:00
parent 06ddd92438
commit 3f2bb03fb8
309 changed files with 206 additions and 146 deletions

View File

@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot</artifactId>
<artifactId>spring-boot-parent</artifactId>
<version>0.5.0.BUILD-SNAPSHOT</version>
</parent>
<artifactId>spring-boot-maven-plugin</artifactId>
@@ -16,7 +16,7 @@
<!-- Compile -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-boot-load</artifactId>
<artifactId>spring-boot-loader</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>

View File

@@ -26,9 +26,9 @@
<version>2.4</version>
<configuration>
<archive>
<manifest>
<mainClass>some.random.Main</mainClass>
</manifest>
<manifest>
<mainClass>some.random.Main</mainClass>
</manifest>
<manifestEntries>
<Not-Used>Foo</Not-Used>
</manifestEntries>

View File

@@ -56,7 +56,7 @@ import org.sonatype.aether.util.artifact.DefaultArtifact;
/**
* MOJO that can can be used to repackage existing JAR and WAR archives so that they can
* be executed from the command line using {@literal java -jar}.
*
*
* @author Phillip Webb
* @author Dave Syer
*/
@@ -247,7 +247,7 @@ public class ExecutableArchiveMojo extends AbstractExecutableArchiveMojo {
String version = getClass().getPackage().getImplementationVersion();
DefaultArtifact artifact = new DefaultArtifact(
"org.springframework.boot:spring-boot-load:" + version);
"org.springframework.boot:spring-boot-loader:" + version);
ArtifactDescriptorRequest descriptorRequest = new ArtifactDescriptorRequest(
artifact, repositories, "plugin");
ArtifactDescriptorResult descriptorResult = this.repositorySystem