#75 - Polished pom.xml.

Fixed scope for test dependencies. Removed obsolete version property for the compiler plugin.
This commit is contained in:
Oliver Gierke
2015-04-08 18:49:35 +02:00
parent 081881b538
commit 8978423ade
2 changed files with 3 additions and 3 deletions

View File

@@ -14,8 +14,8 @@
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
</dependency>
</dependencies>
</project>

View File

@@ -74,6 +74,7 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
@@ -83,7 +84,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>