多租户商城-后台
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.

41 lines
1.2 KiB

2 years ago
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.shop</groupId>
  6. <artifactId>cereshop-commons</artifactId>
  7. <version>2.0</version>
  8. <name>cereshop-commons</name>
  9. <description>Commons project for Spring Boot</description>
  10. <parent>
  11. <groupId>com.shop</groupId>
  12. <artifactId>cereshop</artifactId>
  13. <version>2.0</version>
  14. </parent>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.baomidou</groupId>
  18. <artifactId>mybatis-plus-core</artifactId>
  19. </dependency>
  20. <!-- redis分布式锁框架 -->
  21. <dependency>
  22. <groupId>org.redisson</groupId>
  23. <artifactId>redisson</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.baomidou</groupId>
  27. <artifactId>mybatis-plus-extension</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.bouncycastle</groupId>
  31. <artifactId>bcprov-jdk16</artifactId>
  32. <version>1.46</version>
  33. <scope>compile</scope>
  34. </dependency>
  35. </dependencies>
  36. </project>