mybatis-redis
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.mybatis.caches</groupId> <artifactId>mybatis-redis</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2015-2025 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>48</version> <relativePath /> </parent> <groupId>org.mybatis.caches</groupId> <artifactId>mybatis-redis</artifactId> <version>1.0.0</version> <name>mybatis-redis</name> <description>Redis support for MyBatis Cache</description> <url>https://github.com/mybatis/redis-cache/</url> <inceptionYear>2015</inceptionYear> <scm> <connection>scm:git:ssh://git@github.com/mybatis/redis-cache.git</connection> <developerConnection>scm:git:ssh://git@github.com/mybatis/redis-cache.git</developerConnection> <tag>mybatis-redis-1.0.0</tag> <url>http://github.com/mybatis/redis-cache/</url> </scm> <issueManagement> <system>GitHub Issue Management</system> <url>https://github.com/mybatis/redis-cache/issues</url> </issueManagement> <ciManagement> <system>GitHub Actions</system> <url>https://github.com/mybatis/redis-cache/actions</url> </ciManagement> <distributionManagement> <site> <id>gh-pages-scm</id> <name>Mybatis GitHub Pages</name> <url>scm:git:ssh://git@github.com/mybatis/redis-cache.git</url> </site> </distributionManagement> <properties> <!-- Java Usage --> <java.version>8</java.version> <java.release.version>8</java.release.version> <clirr.comparisonVersion>1.0.3</clirr.comparisonVersion> <findbugs.onlyAnalyze>org.mybatis.caches.redis.*</findbugs.onlyAnalyze> <gcu.product>Cache</gcu.product> <module.name>org.mybatis.caches.redis</module.name> <!-- Reproducible Builds --> <project.build.outputTimestamp>1736569271</project.build.outputTimestamp> </properties> <dependencies> <!-- Provided dependencies --> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.5.19</version> <scope>provided</scope> </dependency> <!-- compile dependencies --> <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> <version>5.2.0</version> <scope>compile</scope> </dependency> <!-- kryo dependencies --> <dependency> <groupId>com.esotericsoftware.kryo</groupId> <artifactId>kryo5</artifactId> <version>5.6.2</version> <scope>compile</scope> <optional>true</optional> </dependency> <!-- test dependencies --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.11.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>2.0.16</version> <scope>test</scope> </dependency> </dependencies> <!-- Profile exists if using projects-aggregator to build as it needs to skip this project on windows --> <profiles> <profile> <id>noTest</id> <activation> <property> <name>noTest</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skipTests>true</skipTests> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>windows</id> <activation> <os> <family>windows</family> </os> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skipTests>true</skipTests> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>