|
|
|
<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.redisson</groupId>
|
|
|
|
<artifactId>redisson-parent</artifactId>
|
|
|
|
<version>3.19.2-SNAPSHOT</version>
|
|
|
|
<relativePath>../</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>redisson-mybatis</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>Redisson/MyBatis cache</name>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.mycila</groupId>
|
|
|
|
<artifactId>license-maven-plugin</artifactId>
|
|
|
|
<version>3.0</version>
|
|
|
|
<configuration>
|
|
|
|
<basedir>${basedir}</basedir>
|
|
|
|
<header>${basedir}/../header.txt</header>
|
|
|
|
<quiet>false</quiet>
|
|
|
|
<failIfMissing>true</failIfMissing>
|
|
|
|
<aggregate>false</aggregate>
|
|
|
|
<includes>
|
|
|
|
<include>src/main/java/org/redisson/</include>
|
|
|
|
</includes>
|
|
|
|
<excludes>
|
|
|
|
<exclude>target/**</exclude>
|
|
|
|
</excludes>
|
|
|
|
<useDefaultExcludes>true</useDefaultExcludes>
|
|
|
|
<mapping>
|
|
|
|
<java>JAVADOC_STYLE</java>
|
|
|
|
</mapping>
|
|
|
|
<strictCheck>true</strictCheck>
|
|
|
|
<useDefaultMapping>true</useDefaultMapping>
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mybatis</groupId>
|
|
|
|
<artifactId>mybatis</artifactId>
|
|
|
|
<version>3.5.6</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.redisson</groupId>
|
|
|
|
<artifactId>redisson</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|