SGF-532 - Fixed dependency scope of Spring Shell.

When we moved the build from Gradle to Maven, the dependency for Spring Shell was elevated from test scope to runtime. It rather should stay on test to not leak into upstream dependencies.
This commit is contained in:
Oliver Gierke
2016-09-20 14:41:46 +02:00
parent 8837917c8b
commit 2c35587b69

View File

@@ -109,7 +109,7 @@
<groupId>org.springframework.shell</groupId>
<artifactId>spring-shell</artifactId>
<version>${spring-shell.version}</version>
<scope>runtime</scope>
<scope>test</scope>
</dependency>
</dependencies>