Moving test dependency to where it's needed (camel-servlet-starter)
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/3547f89d Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/3547f89d Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/3547f89d Branch: refs/heads/master Commit: 3547f89dcb3c9089198c2b3dd1037880abaa5c9c Parents: 40fa7f8 Author: Nicola Ferraro <[email protected]> Authored: Tue Nov 8 10:08:01 2016 +0100 Committer: Nicola Ferraro <[email protected]> Committed: Tue Nov 8 13:50:18 2016 +0100 ---------------------------------------------------------------------- components-starter/camel-servlet-starter/pom.xml | 8 ++++++++ components-starter/pom.xml | 6 ------ 2 files changed, 8 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/3547f89d/components-starter/camel-servlet-starter/pom.xml ---------------------------------------------------------------------- diff --git a/components-starter/camel-servlet-starter/pom.xml b/components-starter/camel-servlet-starter/pom.xml index 6189637..ef6d44f 100644 --- a/components-starter/camel-servlet-starter/pom.xml +++ b/components-starter/camel-servlet-starter/pom.xml @@ -37,6 +37,14 @@ <artifactId>camel-servlet</artifactId> <version>${project.version}</version> </dependency> + <!-- Test dependencies --> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-web</artifactId> + <version>${spring-boot-version}</version> + <scope>test</scope> + </dependency> + <!-- End of test dependencies --> <!--START OF GENERATED CODE--> <dependency> <groupId>org.apache.camel</groupId> http://git-wip-us.apache.org/repos/asf/camel/blob/3547f89d/components-starter/pom.xml ---------------------------------------------------------------------- diff --git a/components-starter/pom.xml b/components-starter/pom.xml index 90b9f6e..aaed1da 100644 --- a/components-starter/pom.xml +++ b/components-starter/pom.xml @@ -55,12 +55,6 @@ <scope>test</scope> </dependency> <dependency> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-web</artifactId> - <version>${spring-boot-version}</version> - <scope>test</scope> - </dependency> - <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-test-spring</artifactId> <version>${project.version}</version>
