Switch to using boot dependencies

This commit is contained in:
Dave Syer 2013-08-19 13:23:04 +01:00
parent 15e9c110e1
commit 16f001e33d

View File

@ -11,15 +11,15 @@
<description>${description}</description> <description>${description}</description>
<parent> <parent>
<groupId>org.springframework.zero</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>0.5.0.BUILD-SNAPSHOT</version> <version>0.5.0.BUILD-SNAPSHOT</version>
</parent> </parent>
<dependencies><% styles.each { %> <dependencies><% styles.each { %>
<dependency> <dependency>
<groupId>org.springframework.zero</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-starter${it}</artifactId> <artifactId>spring-boot-starter${it}</artifactId>
</dependency><% } %> </dependency><% } %>
</dependencies> </dependencies>
@ -30,8 +30,8 @@
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.springframework.zero</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-package-maven-plugin</artifactId> <artifactId>spring-boot-maven-plugin</artifactId>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>