You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 1.5 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. <groupId>com.xkcoding</groupId>
  7. <artifactId>demo-distributed-lock</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>demo-distributed-lock-zookeeper</artifactId>
  12. <properties>
  13. <java.version>17</java.version>
  14. <zookeeper.version>3.8.0</zookeeper.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.xkcoding</groupId>
  19. <artifactId>common-tools</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.xkcoding</groupId>
  23. <artifactId>demo-distributed-lock-api</artifactId>
  24. <version>1.0.0-SNAPSHOT</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.apache.zookeeper</groupId>
  28. <artifactId>zookeeper</artifactId>
  29. <version>${zookeeper.version}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.projectlombok</groupId>
  33. <artifactId>lombok</artifactId>
  34. <optional>true</optional>
  35. </dependency>
  36. </dependencies>
  37. <build>
  38. <finalName>demo-distributed-lock-zookeeper</finalName>
  39. <plugins>
  40. <plugin>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-maven-plugin</artifactId>
  43. </plugin>
  44. </plugins>
  45. </build>
  46. </project>