Browse Source

Fix broken test dependencies

pull/23/head
Phillip Webb 13 years ago
parent
commit
b5e81ff42d
  1. 9
      spring-boot-samples/spring-boot-sample-batch/pom.xml
  2. 9
      spring-boot-samples/spring-boot-sample-profile/pom.xml
  3. 9
      spring-boot-samples/spring-boot-sample-simple/pom.xml
  4. 2
      spring-boot-samples/spring-boot-sample-xml/pom.xml

9
spring-boot-samples/spring-boot-sample-batch/pom.xml

@ -19,6 +19,15 @@ @@ -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>

9
spring-boot-samples/spring-boot-sample-profile/pom.xml

@ -24,6 +24,15 @@ @@ -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>

9
spring-boot-samples/spring-boot-sample-simple/pom.xml

@ -19,6 +19,15 @@ @@ -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>

2
spring-boot-samples/spring-boot-sample-xml/pom.xml

@ -19,6 +19,8 @@ @@ -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>

Loading…
Cancel
Save