Files
java-tutorials/spring-boot-modules/spring-boot-caching/pom.xml
T

93 lines
3.2 KiB
XML
Raw Normal View History

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-boot-caching</artifactId>
2020-04-29 20:10:16 +05:30
<version>0.1-SNAPSHOT</version>
<name>spring-boot-caching</name>
2020-04-29 20:10:16 +05:30
<packaging>war</packaging>
<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>
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>
<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>
<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
<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>
<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>