pom.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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.pro</groupId>
  8. <version>1.20.0-SNAPSHOT</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>datasource-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.pro</groupId>
  20. <artifactId>common-component</artifactId>
  21. <version>${project.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.zaxxer</groupId>
  25. <artifactId>HikariCP</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-test</artifactId>
  30. <scope>test</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>io.r2dbc</groupId>
  34. <artifactId>r2dbc-spi</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>io.r2dbc</groupId>
  38. <artifactId>r2dbc-pool</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>io.r2dbc</groupId>
  42. <artifactId>r2dbc-h2</artifactId>
  43. <scope>test</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.h2database</groupId>
  47. <artifactId>h2</artifactId>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.data</groupId>
  52. <artifactId>spring-data-r2dbc</artifactId>
  53. </dependency>
  54. </dependencies>
  55. </project>