moved spring-jersey-rx into spring-jersey
This commit is contained in:
		
							parent
							
								
									0d56c806e5
								
							
						
					
					
						commit
						0782ae03c0
					
				| @ -1,67 +0,0 @@ | ||||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
|     <modelVersion>4.0.0</modelVersion> | ||||
|     <groupId>com.baeldung.samples</groupId> | ||||
|     <artifactId>jersey-client-rx</artifactId> | ||||
|     <version>1.0</version> | ||||
|     <packaging>jar</packaging> | ||||
|     <dependencies> | ||||
|         <dependency> | ||||
|             <groupId>org.glassfish.jersey.inject</groupId> | ||||
|             <artifactId>jersey-hk2</artifactId> | ||||
|             <version>2.27</version> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>org.glassfish.jersey.core</groupId> | ||||
|             <artifactId>jersey-client</artifactId> | ||||
|             <version>2.27</version> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>org.glassfish.jersey.ext.rx</groupId> | ||||
|             <artifactId>jersey-rx-client-rxjava</artifactId> | ||||
|             <version>2.27</version> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>org.glassfish.jersey.ext.rx</groupId> | ||||
|             <artifactId>jersey-rx-client-rxjava2</artifactId> | ||||
|             <version>2.27</version> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>com.github.tomakehurst</groupId> | ||||
|             <artifactId>wiremock</artifactId> | ||||
|             <version>1.58</version> | ||||
|             <scope>test</scope> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>org.junit.vintage</groupId> | ||||
|             <artifactId>junit-vintage-engine</artifactId> | ||||
|             <version>5.2.0</version> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>org.glassfish.jersey.media</groupId> | ||||
|             <artifactId>jersey-media-json-jackson</artifactId> | ||||
|             <version>2.25</version> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>com.fasterxml.jackson.jaxrs</groupId> | ||||
|             <artifactId>jackson-jaxrs-json-provider</artifactId> | ||||
|             <version>2.4.1</version> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>org.slf4j</groupId> | ||||
|             <artifactId>slf4j-jdk14</artifactId> | ||||
|             <version>1.7.25</version> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>org.assertj</groupId> | ||||
|             <artifactId>assertj-core</artifactId> | ||||
|             <version>3.10.0</version> | ||||
|             <scope>test</scope> | ||||
|         </dependency> | ||||
|     </dependencies> | ||||
|     <properties> | ||||
|         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||||
|         <maven.compiler.source>1.8</maven.compiler.source> | ||||
|         <maven.compiler.target>1.8</maven.compiler.target> | ||||
|     </properties> | ||||
| </project> | ||||
| @ -1,3 +0,0 @@ | ||||
| # Fluent, Reactive Jersey Client Orchestration # | ||||
| 
 | ||||
| ### Sample code demonstrating the options for asynchronous, reactive RESTful service consumption with JAX-RS ### | ||||
| @ -76,6 +76,49 @@ | ||||
|             <scope>test</scope> | ||||
|         </dependency> | ||||
| 
 | ||||
|         <dependency> | ||||
|             <groupId>org.glassfish.jersey.inject</groupId> | ||||
|             <artifactId>jersey-hk2</artifactId> | ||||
|             <version>${jersey.version}</version> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>org.glassfish.jersey.ext.rx</groupId> | ||||
|             <artifactId>jersey-rx-client-rxjava</artifactId> | ||||
|             <version>${jersey.version}</version> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>org.glassfish.jersey.ext.rx</groupId> | ||||
|             <artifactId>jersey-rx-client-rxjava2</artifactId> | ||||
|             <version>${jersey.version}</version> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>com.github.tomakehurst</groupId> | ||||
|             <artifactId>wiremock</artifactId> | ||||
|             <version>1.58</version> | ||||
|             <scope>test</scope> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>com.fasterxml.jackson.jaxrs</groupId> | ||||
|             <artifactId>jackson-jaxrs-json-provider</artifactId> | ||||
|             <version>2.6.0</version> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>com.fasterxml.jackson.core</groupId> | ||||
|             <artifactId>jackson-databind</artifactId> | ||||
|             <version>2.6.0</version> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>org.slf4j</groupId> | ||||
|             <artifactId>slf4j-jdk14</artifactId> | ||||
|             <version>1.7.25</version> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>org.assertj</groupId> | ||||
|             <artifactId>assertj-core</artifactId> | ||||
|             <version>3.10.0</version> | ||||
|             <scope>test</scope> | ||||
|         </dependency> | ||||
| 
 | ||||
|     </dependencies> | ||||
| 
 | ||||
|     <profiles> | ||||
| @ -170,7 +213,7 @@ | ||||
|     </build> | ||||
| 
 | ||||
|     <properties> | ||||
|         <jersey.version>2.26</jersey.version> | ||||
|         <jersey.version>2.27</jersey.version> | ||||
|         <maven-war-plugin.version>3.2.0</maven-war-plugin.version> | ||||
|         <cargo-maven2-plugin.version>1.6.1</cargo-maven2-plugin.version> | ||||
|         <httpcore.version>4.4.9</httpcore.version> | ||||
|  | ||||
| @ -1,4 +1,4 @@ | ||||
| package com.baeldung.samples.jerseyrx; | ||||
| package com.baeldung.clientrx; | ||||
| 
 | ||||
| import static com.github.tomakehurst.wiremock.client.WireMock.*; | ||||
| import static org.assertj.core.api.Assertions.*; | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user