Use org.springframework.boot groupId in spring-boot-samples

Use org.springframework.boot instead of ${project.groupId}
groupId in order to make it easier to use spring-boot-samples
modules as a starting point for new projects.
This commit is contained in:
Sebastien Deleuze
2014-03-07 14:41:24 +01:00
committed by Dave Syer
parent c68902260e
commit ab6c8dfee3
26 changed files with 74 additions and 74 deletions

View File

@@ -14,11 +14,11 @@
</properties>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>