You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion>
<groupId>com.shop</groupId> <artifactId>cereshop-commons</artifactId> <version>2.0</version> <name>cereshop-commons</name> <description>Commons project for Spring Boot</description>
<parent> <groupId>com.shop</groupId> <artifactId>cereshop</artifactId> <version>2.0</version> </parent>
<dependencies> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-core</artifactId> </dependency>
<!-- redis分布式锁框架 --> <dependency> <groupId>org.redisson</groupId> <artifactId>redisson</artifactId> </dependency>
<dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-extension</artifactId> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk16</artifactId> <version>1.46</version> <scope>compile</scope> </dependency> </dependencies> </project>
|