#29 - Fixed setup of Spring Boot Maven plugin.

Removed the declaration of the Spring Boot Maven plugin in the root POM as it broke the build for package and install goals for projects that don't actually contain a main class but tests only.

Declared the plugin at the root POM for Spring Data REST related projects as these are the only ones providing a standalone runnable app.

Related pull request: #30.
This commit is contained in:
Oliver Gierke
2014-11-12 09:39:23 +01:00
parent 7d034f84a7
commit ca5fd354b6
2 changed files with 9 additions and 9 deletions

View File

@@ -71,15 +71,6 @@
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>spring-libs-milestone</id>

View File

@@ -32,4 +32,13 @@
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>