Fix broken test dependencies

This commit is contained in:
Phillip Webb 2013-08-07 22:52:26 -07:00
parent eb69732fbb
commit b5e81ff42d
4 changed files with 29 additions and 0 deletions

View File

@ -19,6 +19,15 @@
<artifactId>spring-boot-starter-batch</artifactId>
<version>${project.version}</version>
</dependency>
<!-- This dependency is just for our integration testing, your app would
not need it -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-boot</artifactId>
<version>${project.version}</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>

View File

@ -24,6 +24,15 @@
<artifactId>snakeyaml</artifactId>
<scope>runtime</scope>
</dependency>
<!-- This dependency is just for our integration testing, your app would
not need it -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-boot</artifactId>
<version>${project.version}</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>

View File

@ -19,6 +19,15 @@
<artifactId>spring-boot-starter</artifactId>
<version>${project.version}</version>
</dependency>
<!-- This dependency is just for our integration testing, your app would
not need it -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-boot</artifactId>
<version>${project.version}</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>

View File

@ -19,6 +19,8 @@
<artifactId>spring-boot-starter</artifactId>
<version>${project.version}</version>
</dependency>
<!-- This dependency is just for our integration testing, your app would
not need it -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-boot</artifactId>