104 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			104 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <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</groupId>
 | |
|     <artifactId>spring-data-redis</artifactId>
 | |
|     <version>1.0</version>
 | |
|     <packaging>jar</packaging>
 | |
| 
 | |
|     <parent>
 | |
|         <artifactId>parent-boot-2</artifactId>
 | |
|         <groupId>com.baeldung</groupId>
 | |
|         <version>0.0.1-SNAPSHOT</version>
 | |
|         <relativePath>../../parent-boot-2</relativePath>
 | |
|     </parent>
 | |
| 
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-data-redis-reactive</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-web</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.projectlombok</groupId>
 | |
|             <artifactId>lombok</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>io.projectreactor</groupId>
 | |
|             <artifactId>reactor-test</artifactId>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.springframework</groupId>
 | |
|             <artifactId>spring-test</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-test</artifactId>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.junit.jupiter</groupId>
 | |
|             <artifactId>junit-jupiter-api</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.junit.jupiter</groupId>
 | |
|             <artifactId>junit-jupiter-engine</artifactId>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.junit.platform</groupId>
 | |
|             <artifactId>junit-platform-surefire-provider</artifactId>
 | |
|             <version>${junit.platform.version}</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.junit.platform</groupId>
 | |
|             <artifactId>junit-platform-runner</artifactId>
 | |
|             <version>${junit.platform.version}</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>cglib</groupId>
 | |
|             <artifactId>cglib-nodep</artifactId>
 | |
|             <version>${cglib.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>redis.clients</groupId>
 | |
|             <artifactId>jedis</artifactId>
 | |
|             <version>${jedis.version}</version>
 | |
|             <type>jar</type>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>com.lordofthejars</groupId>
 | |
|             <artifactId>nosqlunit-redis</artifactId>
 | |
|             <version>${nosqlunit.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>com.github.kstyrc</groupId>
 | |
|             <artifactId>embedded-redis</artifactId>
 | |
|             <version>${embedded-redis.version}</version>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
| 
 | |
|     <properties>
 | |
|         <cglib.version>3.2.4</cglib.version>
 | |
|         <jedis.version>2.9.0</jedis.version>
 | |
|         <nosqlunit.version>0.10.0</nosqlunit.version>
 | |
|         <spring-data-commons.version>2.0.3.RELEASE</spring-data-commons.version>
 | |
|         <embedded-redis.version>0.6</embedded-redis.version>
 | |
|         <junit.platform.version>1.0.0</junit.platform.version>
 | |
|         <junit.jupiter.version>5.0.2</junit.jupiter.version>
 | |
|     </properties>
 | |
| 
 | |
| </project>
 |