123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns="http://maven.apache.org/POM/4.0.0"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <groupId>com.dgtis</groupId>
- <artifactId>dgtis-common</artifactId>
- <version>2.2.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
-
- <artifactId>dgtis-common-redis</artifactId>
-
- <description>
- dgtis-common-redis缓存服务
- </description>
- <dependencies>
-
- <!-- SpringBoot Boot Redis -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-redis</artifactId>
- </dependency>
-
- <!-- dgtis Common Core-->
- <dependency>
- <groupId>com.dgtis</groupId>
- <artifactId>dgtis-common-core</artifactId>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.13.2</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.dgtis</groupId>
- <artifactId>dgtis-api-system</artifactId>
- </dependency>
- </dependencies>
- </project>
|