pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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-sql-springboot</artifactId>
  13. <properties>
  14. <h2.version>2.1.214</h2.version>
  15. <jpa.version>2.0.5.RELEASE</jpa.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.yomahub</groupId>
  20. <artifactId>liteflow-spring-boot-starter</artifactId>
  21. <version>${revision}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.yomahub</groupId>
  25. <artifactId>liteflow-rule-sql</artifactId>
  26. <version>${revision}</version>
  27. <scope>test</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-test</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-data-jpa</artifactId>
  36. <version>${jpa.version}</version>
  37. <scope>test</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.h2database</groupId>
  41. <artifactId>h2</artifactId>
  42. <version>${h2.version}</version>
  43. <scope>test</scope>
  44. </dependency>
  45. </dependencies>
  46. </project>