mybatis-ehcache
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.mybatis.caches</groupId> <artifactId>mybatis-ehcache</artifactId> <version>1.2.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2010-2022 the original author or authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.mybatis</groupId> <artifactId>mybatis-parent</artifactId> <version>36</version> <relativePath /> </parent> <groupId>org.mybatis.caches</groupId> <artifactId>mybatis-ehcache</artifactId> <version>1.2.3</version> <packaging>jar</packaging> <name>mybatis-ehcache</name> <description>Ehcache support for MyBatis Cache</description> <url>https://github.com/mybatis/ehcache-cache/</url> <scm> <url>http://github.com/mybatis/ehcache-cache</url> <connection>scm:git:ssh://github.com/mybatis/ehcache-cache.git</connection> <developerConnection>scm:git:ssh://git@github.com/mybatis/ehcache-cache.git</developerConnection> <tag>mybatis-ehcache-1.2.3</tag> </scm> <issueManagement> <system>GitHub Issue Management</system> <url>https://github.com/mybatis/ehcache-cache/issues</url> </issueManagement> <ciManagement> <system>GitHub Actions</system> <url>https://github.com/mybatis/ehcache-cache/actions</url> </ciManagement> <distributionManagement> <site> <id>gh-pages</id> <name>Mybatis GitHub Pages</name> <url>git:ssh://git@github.com/mybatis/ehcache-cache.git?gh-pages#</url> </site> </distributionManagement> <properties> <clirr.comparisonVersion>1.2.0</clirr.comparisonVersion> <findbugs.onlyAnalyze>org.mybatis.caches.ehcache.*</findbugs.onlyAnalyze> <gcu.product>Cache</gcu.product> <module.name>org.mybatis.caches.ehcache</module.name> <!-- Reproducible Builds --> <project.build.outputTimestamp>1669314434</project.build.outputTimestamp> </properties> <dependencies> <!-- | Provided dependencies --> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.5.11</version> <scope>provided</scope> </dependency> <!-- | compile dependencies --> <dependency> <groupId>net.sf.ehcache</groupId> <artifactId>ehcache</artifactId> <version>2.10.9.2</version> <scope>compile</scope> </dependency> <!-- | trick to fix javadoc generation --> <dependency> <groupId>jakarta.transaction</groupId> <artifactId>jakarta.transaction-api</artifactId> <version>1.3.3</version> <scope>provided</scope> </dependency> <!-- | test dependencies --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.9.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>2.0.4</version> <scope>test</scope> </dependency> </dependencies> </project>