Repository: cxf Updated Branches: refs/heads/3.1.x-fixes de3464abe -> 9fb9b883d
Removing a test dep in the jaxrs spring boot demo Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/9fb9b883 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/9fb9b883 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/9fb9b883 Branch: refs/heads/3.1.x-fixes Commit: 9fb9b883d21a4e47017b141a5f21a4fd58203d16 Parents: de3464a Author: Sergey Beryozkin <[email protected]> Authored: Mon May 9 16:35:41 2016 +0100 Committer: Sergey Beryozkin <[email protected]> Committed: Mon May 9 16:36:26 2016 +0100 ---------------------------------------------------------------------- .../samples/jax_rs/jaxrs_spring_boot/pom.xml | 28 +++++++------------- 1 file changed, 10 insertions(+), 18 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/9fb9b883/distribution/src/main/release/samples/jax_rs/jaxrs_spring_boot/pom.xml ---------------------------------------------------------------------- diff --git a/distribution/src/main/release/samples/jax_rs/jaxrs_spring_boot/pom.xml b/distribution/src/main/release/samples/jax_rs/jaxrs_spring_boot/pom.xml index fe2919e..7b1d6ab 100644 --- a/distribution/src/main/release/samples/jax_rs/jaxrs_spring_boot/pom.xml +++ b/distribution/src/main/release/samples/jax_rs/jaxrs_spring_boot/pom.xml @@ -16,36 +16,27 @@ </properties> <dependencies> <dependency> - <groupId>cglib</groupId> - <artifactId>cglib-nodep</artifactId> - <version>2.2.2</version> - </dependency> - <dependency> <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter</artifactId> - <version>1.2.3.RELEASE</version> - </dependency> - <dependency> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-test</artifactId> + <artifactId>spring-boot-starter-web</artifactId> <version>1.2.3.RELEASE</version> - <scope>test</scope> </dependency> + <dependency> <groupId>org.apache.cxf</groupId> - <artifactId>cxf-rt-frontend-jaxrs</artifactId> + <artifactId>cxf-rt-transports-http</artifactId> <version>${cxf.version}</version> </dependency> <dependency> <groupId>org.apache.cxf</groupId> - <artifactId>cxf-rt-rs-client</artifactId> + <artifactId>cxf-rt-frontend-jaxrs</artifactId> <version>${cxf.version}</version> </dependency> <dependency> <groupId>org.apache.cxf</groupId> - <artifactId>cxf-rt-transports-http</artifactId> + <artifactId>cxf-rt-rs-client</artifactId> <version>${cxf.version}</version> </dependency> + <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-rs-service-description</artifactId> @@ -63,10 +54,11 @@ </exclusions> </dependency> <dependency> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-web</artifactId> - <version>1.2.3.RELEASE</version> + <groupId>cglib</groupId> + <artifactId>cglib-nodep</artifactId> + <version>2.2.2</version> </dependency> + </dependencies> <build> <plugins>
