pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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>jetlinks-components</artifactId>
  7. <groupId>org.jetlinks.community</groupId>
  8. <version>2.0.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <description>测试基础模块,引入后请设置scope为test</description>
  12. <artifactId>test-component</artifactId>
  13. <properties>
  14. <maven.compiler.source>8</maven.compiler.source>
  15. <maven.compiler.target>8</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.jetlinks</groupId>
  20. <artifactId>rule-engine-support</artifactId>
  21. <optional>true</optional>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.jetlinks</groupId>
  25. <artifactId>jetlinks-supports</artifactId>
  26. <optional>true</optional>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework</groupId>
  30. <artifactId>spring-aspects</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.junit.jupiter</groupId>
  34. <artifactId>junit-jupiter-api</artifactId>
  35. <!-- <scope>test</scope>-->
  36. </dependency>
  37. <dependency>
  38. <groupId>org.hswebframework.web</groupId>
  39. <artifactId>hsweb-commons-crud</artifactId>
  40. <version>${hsweb.framework.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.hswebframework.web</groupId>
  44. <artifactId>hsweb-starter</artifactId>
  45. <version>${hsweb.framework.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework</groupId>
  49. <artifactId>spring-webflux</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-data-r2dbc</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>io.r2dbc</groupId>
  57. <artifactId>r2dbc-h2</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>io.r2dbc</groupId>
  61. <artifactId>r2dbc-postgresql</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.assertj</groupId>
  65. <artifactId>assertj-core</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.mockito</groupId>
  69. <artifactId>mockito-junit-jupiter</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.testcontainers</groupId>
  73. <artifactId>testcontainers</artifactId>
  74. <version>1.15.3</version>
  75. <scope>compile</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.testcontainers</groupId>
  79. <artifactId>junit-jupiter</artifactId>
  80. <version>1.15.3</version>
  81. <scope>compile</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-starter-test</artifactId>
  86. <scope>compile</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>junit</groupId>
  90. <artifactId>junit</artifactId>
  91. <scope>compile</scope>
  92. </dependency>
  93. <dependency>
  94. <groupId>io.lettuce</groupId>
  95. <artifactId>lettuce-core</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>uk.co.jemos.podam</groupId>
  99. <artifactId>podam</artifactId>
  100. <version>7.2.7.RELEASE</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.fasterxml.jackson.core</groupId>
  104. <artifactId>jackson-databind</artifactId>
  105. </dependency>
  106. </dependencies>
  107. </project>