pom.xml 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. <artifactId>liteflow-testcase-el</artifactId>
  8. <groupId>com.yomahub</groupId>
  9. <version>${revision}</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>liteflow-testcase-el-sql-springboot-sharding-jdbc</artifactId>
  13. <properties>
  14. <h2.version>2.1.214</h2.version>
  15. <jpa.version>2.6.8</jpa.version>
  16. <shardingsphere.version>5.5.0</shardingsphere.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter</artifactId>
  22. <version>${springboot.version}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. <version>${springboot.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.yomahub</groupId>
  31. <artifactId>liteflow-spring-boot-starter</artifactId>
  32. <version>${revision}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.yomahub</groupId>
  36. <artifactId>liteflow-rule-sql</artifactId>
  37. <version>${revision}</version>
  38. <scope>test</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-test</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-data-jpa</artifactId>
  47. <version>${jpa.version}</version>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.h2database</groupId>
  52. <artifactId>h2</artifactId>
  53. <version>${h2.version}</version>
  54. <scope>test</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.yomahub</groupId>
  58. <artifactId>liteflow-script-groovy</artifactId>
  59. <version>${revision}</version>
  60. <scope>test</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.yomahub</groupId>
  64. <artifactId>liteflow-script-graaljs</artifactId>
  65. <version>${revision}</version>
  66. <scope>test</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.apache.shardingsphere</groupId>
  70. <artifactId>shardingsphere-jdbc</artifactId>
  71. <version>${shardingsphere.version}</version>
  72. <exclusions>
  73. <exclusion>
  74. <groupId>org.apache.shardingsphere</groupId>
  75. <artifactId>shardingsphere-test-util</artifactId>
  76. </exclusion>
  77. </exclusions>
  78. </dependency>
  79. </dependencies>
  80. </project>