1 Star 1 Fork 0

bubin/redis-cache-mybatis-redis-1.0.0-beta3

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 3.83 KB
一键复制 编辑 原始数据 按行查看 历史
bubin 提交于 2020-09-21 11:43 . init project.
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2010-2015 The MyBatis Team
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
http://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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-parent</artifactId>
<version>26</version>
<relativePath />
</parent>
<groupId>org.mybatis.caches</groupId>
<artifactId>mybatis-redis</artifactId>
<version>1.0.0-beta3</version>
<packaging>jar</packaging>
<name>mybatis-redis</name>
<description>Redis support for MyBatis Cache</description>
<url>https://github.com/mybatis/redis-cache</url>
<scm>
<url>http://github.com/mybatis/redis-cache</url>
<connection>scm:git:ssh://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-beta3</tag>
</scm>
<issueManagement>
<system>GitHub Issue Management</system>
<url>https://github.com/mybatis/redis-cache/issues</url>
</issueManagement>
<ciManagement>
<system>Travis CI</system>
<url>https://travis-ci.org/mybatis/redis-cache</url>
</ciManagement>
<distributionManagement>
<site>
<id>gh-pages</id>
<name>Mybatis GitHub Pages</name>
<url>git:ssh://git@github.com/mybatis/redis-cache.git?gh-pages#</url>
</site>
</distributionManagement>
<properties>
<clirr.comparisonVersion>1.0.3</clirr.comparisonVersion>
<findbugs.onlyAnalyze>org.mybatis.caches.redis.*</findbugs.onlyAnalyze>
<gcu.product>Cache</gcu.product>
</properties>
<dependencies>
<!--
| Provided dependencies
-->
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.3.0</version>
<scope>provided</scope>
</dependency>
<!--
| compile dependencies
-->
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>3.3.0</version>
<scope>compile</scope>
</dependency>
<!--
| trick to fix javadoc generation
-->
<dependency>
<groupId>javax.transaction</groupId>
<artifactId>transaction-api</artifactId>
<version>1.1</version>
<scope>provided</scope>
</dependency>
<!--
| test dependencies
-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.13</version>
<scope>test</scope>
</dependency>
</dependencies>
<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>
</profiles>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/bubin-open/redis-cache-mybatis-redis-1.0.0-beta3.git
git@gitee.com:bubin-open/redis-cache-mybatis-redis-1.0.0-beta3.git
bubin-open
redis-cache-mybatis-redis-1.0.0-beta3
redis-cache-mybatis-redis-1.0.0-beta3
master

搜索帮助