2023-03-02 11:17:24 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<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>
|
|
|
|
<artifactId>datacap</artifactId>
|
|
|
|
<groupId>io.edurt.datacap</groupId>
|
2024-11-18 10:47:23 +08:00
|
|
|
<version>2024.4.0-SNAPSHOT</version>
|
2023-03-02 11:17:24 +08:00
|
|
|
<relativePath>../../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>io.edurt.datacap</groupId>
|
|
|
|
<artifactId>datacap-driver-redis</artifactId>
|
|
|
|
<description>DataCap - Driver</description>
|
|
|
|
|
|
|
|
<properties>
|
2023-03-08 21:38:33 +08:00
|
|
|
<redis.version>4.3.1</redis.version>
|
2023-03-02 11:17:24 +08:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>redis.clients</groupId>
|
|
|
|
<artifactId>jedis</artifactId>
|
|
|
|
<version>${redis.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
<version>${plugin.maven.checkstyle.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2024-06-09 09:03:23 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>com.github.spotbugs</groupId>
|
|
|
|
<artifactId>spotbugs-maven-plugin</artifactId>
|
|
|
|
<version>${plugin.maven.findbugs.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2023-03-02 11:17:24 +08:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|