pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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>poyee-parent</artifactId>
  7. <groupId>com.poyee</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>poyee-app-mall</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.poyee</groupId>
  15. <artifactId>poyee-service-mall</artifactId>
  16. <version>1.0-SNAPSHOT</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-actuator</artifactId>
  21. </dependency>
  22. <!-- database -->
  23. <dependency>
  24. <groupId>io.r2dbc</groupId>
  25. <artifactId>r2dbc-postgresql</artifactId>
  26. <version>0.8.7.RELEASE</version>
  27. </dependency>
  28. <!-- r2dbc-->
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-data-r2dbc</artifactId>
  32. <version>2.5.2</version>
  33. <exclusions>
  34. <exclusion>
  35. <groupId>io.r2dbc</groupId>
  36. <artifactId>r2dbc-pool</artifactId>
  37. </exclusion>
  38. </exclusions>
  39. </dependency>
  40. <dependency>
  41. <groupId>io.r2dbc</groupId>
  42. <artifactId>r2dbc-pool</artifactId>
  43. <version>0.8.0.RELEASE</version>
  44. </dependency>
  45. <!-- database -->
  46. <dependency>
  47. <groupId>io.r2dbc</groupId>
  48. <artifactId>r2dbc-postgresql</artifactId>
  49. <version>0.8.0.RELEASE</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>io.micrometer</groupId>
  53. <artifactId>micrometer-core</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>io.micrometer</groupId>
  57. <artifactId>micrometer-registry-prometheus</artifactId>
  58. </dependency>
  59. </dependencies>
  60. <build>
  61. <plugins>
  62. <plugin>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-maven-plugin</artifactId>
  65. </plugin>
  66. </plugins>
  67. </build>
  68. </project>