pom.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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.yomahub</groupId>
  8. <artifactId>liteflow-testcase-el</artifactId>
  9. <version>${revision}</version>
  10. </parent>
  11. <artifactId>liteflow-testcase-el-script-multi-language-springboot</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.yomahub</groupId>
  15. <artifactId>liteflow-spring-boot-starter</artifactId>
  16. <version>${revision}</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.yomahub</groupId>
  20. <artifactId>liteflow-script-groovy</artifactId>
  21. <version>${revision}</version>
  22. <scope>test</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.yomahub</groupId>
  26. <artifactId>liteflow-script-javascript</artifactId>
  27. <version>${revision}</version>
  28. <scope>test</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.yomahub</groupId>
  32. <artifactId>liteflow-script-python</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. </dependencies>
  41. </project>