pom.xml 1.2 KB

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