* Java Example of Hexagonal Architecture * removing unnecessary maven files from pull request and spaces in code * Removing unnecessary lines * Example code for using Multiple Cache Manager in SpringBoot * BAEL-3963:Using multiple cache managers in Spring * removing new module created in last pull request * Fixes as per editor Suggestions Co-authored-by: Ankur Gupta <ankur.gupta@jda.com>
		
			
				
	
	
		
			67 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			1.9 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-caching</artifactId>
 | |
| 	<version>0.1-SNAPSHOT</version>
 | |
| 	<name>spring-caching</name>
 | |
| 	<packaging>war</packaging>
 | |
| 
 | |
| 	<parent>
 | |
| 		<groupId>com.baeldung</groupId>
 | |
| 		<artifactId>parent-boot-2</artifactId>
 | |
| 		<version>0.0.1-SNAPSHOT</version>
 | |
| 		<relativePath>../parent-boot-2</relativePath>
 | |
| 	</parent>
 | |
| 
 | |
| 	<dependencies>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.boot</groupId>
 | |
| 			<artifactId>spring-boot-starter-web</artifactId>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework</groupId>
 | |
| 			<artifactId>spring-context</artifactId>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.boot</groupId>
 | |
| 			<artifactId>spring-boot-starter-cache</artifactId>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework</groupId>
 | |
| 			<artifactId>spring-web</artifactId>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework</groupId>
 | |
| 			<artifactId>spring-webmvc</artifactId>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.ehcache</groupId>
 | |
| 			<artifactId>ehcache</artifactId>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework</groupId>
 | |
| 			<artifactId>spring-test</artifactId>
 | |
| 			<scope>test</scope>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>com.github.ben-manes.caffeine</groupId>
 | |
| 			<artifactId>caffeine</artifactId>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>com.h2database</groupId>
 | |
| 			<artifactId>h2</artifactId>
 | |
| 			<scope>runtime</scope>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.springframework.boot</groupId>
 | |
| 			<artifactId>spring-boot-starter-jdbc</artifactId>
 | |
| 		</dependency>
 | |
| 	</dependencies>
 | |
| 
 | |
| 	<properties>
 | |
| 		<ehcache.version>3.5.2</ehcache.version>
 | |
| 	</properties>
 | |
| 
 | |
| </project> |