2019-12-05 16:56:52 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2020-04-18 20:41:31 +05:30
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2021-05-14 17:42:38 +05:30
|
|
|
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">
|
2020-04-29 20:10:16 +05:30
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>spring-caching</artifactId>
|
|
|
|
<version>0.1-SNAPSHOT</version>
|
|
|
|
<name>spring-caching</name>
|
|
|
|
<packaging>war</packaging>
|
2019-10-31 20:43:47 -05:00
|
|
|
|
2023-05-24 19:37:51 +05:30
|
|
|
<parent>
|
2024-03-26 00:06:53 +02:00
|
|
|
<groupId>com.baeldung.spring-boot-modules</groupId>
|
|
|
|
<artifactId>spring-boot-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2020-04-29 20:10:16 +05:30
|
|
|
</parent>
|
2019-10-31 20:43:47 -05:00
|
|
|
|
2020-04-29 20:10:16 +05:30
|
|
|
<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>
|
2024-02-21 19:33:44 +05:30
|
|
|
<classifier>jakarta</classifier>
|
2020-04-29 20:10:16 +05:30
|
|
|
</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>
|
2020-07-07 14:18:10 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2023-03-23 05:38:51 +02:00
|
|
|
<version>${lombok.version}</version>
|
2020-07-07 14:18:10 +03:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
<artifactId>spring-data-commons</artifactId>
|
|
|
|
</dependency>
|
2020-04-29 20:10:16 +05:30
|
|
|
</dependencies>
|
2021-05-14 17:42:38 +05:30
|
|
|
|
2024-02-21 19:33:44 +05:30
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2020-04-29 20:10:16 +05:30
|
|
|
<properties>
|
2024-02-27 02:49:02 +01:00
|
|
|
<ehcache.version>3.10.8</ehcache.version>
|
|
|
|
<start-class>com.baeldung.caching.boot.CacheApplication</start-class>
|
2020-04-29 20:10:16 +05:30
|
|
|
</properties>
|
2021-05-14 17:42:38 +05:30
|
|
|
|
|
|
|
</project>
|