pom.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  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. <parent>
  6. <artifactId>hsweb-concurrent-lock</artifactId>
  7. <groupId>org.hswebframework.web</groupId>
  8. <version>3.1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>hsweb-concurrent-lock-redis</artifactId>
  12. <description>使用redisson实现分布式锁</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.redisson</groupId>
  16. <artifactId>redisson</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.hswebframework.web</groupId>
  20. <artifactId>hsweb-concurrent-lock-api</artifactId>
  21. <version>${project.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>io.netty</groupId>
  25. <artifactId>netty-transport-native-epoll</artifactId>
  26. <version>4.1.8.Final</version>
  27. <scope>provided</scope>
  28. <classifier>linux-x86_64</classifier>
  29. </dependency>
  30. </dependencies>
  31. </project>