44 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
		
		
			
		
	
	
			44 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
|  | <?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> | ||
|  |     <artifactId>spring-session-redis</artifactId> | ||
|  |     <version>1.0.0-SNAPSHOT</version> | ||
|  |     <packaging>jar</packaging> | ||
|  | 
 | ||
|  |     <parent> | ||
|  |         <artifactId>parent-boot-1</artifactId> | ||
|  |         <groupId>com.baeldung</groupId> | ||
|  |         <version>0.0.1-SNAPSHOT</version> | ||
|  |         <relativePath>../../parent-boot-1</relativePath> | ||
|  |     </parent> | ||
|  | 
 | ||
|  |     <dependencies> | ||
|  |         <dependency> | ||
|  |             <groupId>org.springframework.boot</groupId> | ||
|  |             <artifactId>spring-boot-starter-data-redis</artifactId> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.springframework.boot</groupId> | ||
|  |             <artifactId>spring-boot-starter-security</artifactId> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.springframework.session</groupId> | ||
|  |             <artifactId>spring-session</artifactId> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.springframework.boot</groupId> | ||
|  |             <artifactId>spring-boot-starter-web</artifactId> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>com.github.kstyrc</groupId> | ||
|  |             <artifactId>embedded-redis</artifactId> | ||
|  |             <version>${embedded-redis.version}</version> | ||
|  |         </dependency> | ||
|  |     </dependencies> | ||
|  |      | ||
|  |     <properties> | ||
|  |     	<embedded-redis.version>0.6</embedded-redis.version> | ||
|  |     </properties> | ||
|  | 
 | ||
|  | </project> |