pom.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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>liteflow-testcase-el</artifactId>
  7. <groupId>com.yomahub</groupId>
  8. <version>${revision}</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>liteflow-testcase-el-zk-springboot</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.yomahub</groupId>
  16. <artifactId>liteflow-spring-boot-starter</artifactId>
  17. <version>${revision}</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.yomahub</groupId>
  21. <artifactId>liteflow-rule-zk</artifactId>
  22. <version>${revision}</version>
  23. <scope>test</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.yomahub</groupId>
  27. <artifactId>liteflow-script-groovy</artifactId>
  28. <version>${revision}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.yomahub</groupId>
  32. <artifactId>liteflow-script-graaljs</artifactId>
  33. <version>${revision}</version>
  34. <scope>test</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-test</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.aspectj</groupId>
  42. <artifactId>aspectjweaver</artifactId>
  43. <scope>test</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.apache.curator</groupId>
  47. <artifactId>curator-test</artifactId>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.101tec</groupId>
  52. <artifactId>zkclient</artifactId>
  53. <scope>test</scope>
  54. </dependency>
  55. </dependencies>
  56. </project>