nemesis-module-ehcache
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.nemesis.platform.module.cache</groupId>
<artifactId>nemesis-module-ehcache</artifactId>
<version>2.3.20.RELEASE</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ nemesis Platform - NExt-generation Multichannel E-commerce SYStem
~
~ Copyright (c) 2010 - 2017 nemesis
~ All rights reserved.
~
~ This software is the confidential and proprietary information of nemesis
~ ("Confidential Information"). You shall not disclose such Confidential
~ Information and shall use it only in accordance with the terms of the
~ license agreement you entered into with nemesis.
-->
<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>
<parent>
<groupId>io.nemesis.platform.module.cache</groupId>
<artifactId>cache</artifactId>
<version>2.3.20.RELEASE</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>nemesis-module-ehcache</artifactId>
<packaging>jar</packaging>
<name>EHCache</name>
<description>Module for EHCache</description>
<url>http://docs.nemesis.io/current/platform/module/cache/ehcache</url>
<properties>
<proguard-maven-plugin.skip>true</proguard-maven-plugin.skip>
<project.directory>ehcache</project.directory>
<maven-automatic-module-name>io.nemesis.platform.module.cache.ehcache</maven-automatic-module-name>
</properties>
<dependencies>
<!-- EHCache -->
<dependency>
<groupId>org.ehcache</groupId>
<artifactId>ehcache</artifactId>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j2</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>javax.cache</groupId>
<artifactId>cache-api</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
</dependency>
</dependencies>
</project>