pom.xml 942 B

123456789101112131415161718192021222324252627282930313233
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.emergency</groupId>
  8. <artifactId>avenue-common</artifactId>
  9. <version>4.6.0</version>
  10. </parent>
  11. <artifactId>avenue-common-sequence</artifactId>
  12. <packaging>jar</packaging>
  13. <description>avenue 分布式发号器</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>redis.clients</groupId>
  17. <artifactId>jedis</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.emergency</groupId>
  21. <artifactId>avenue-common-core</artifactId>
  22. </dependency>
  23. <!--mybatis plus-->
  24. <dependency>
  25. <groupId>com.baomidou</groupId>
  26. <artifactId>mybatis-plus-extension</artifactId>
  27. </dependency>
  28. </dependencies>
  29. </project>