pom.xml 2.3 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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.xxh.cloud</groupId>
  8. <artifactId>healthy-application-doctor</artifactId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <artifactId>healthy-doctor-crm-framework</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.xxh.cloud</groupId>
  20. <artifactId>xx-config-framework</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.xxh.cloud</groupId>
  24. <artifactId>xx-config-mybatisplus</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.xxh.cloud</groupId>
  28. <artifactId>healthy-doctor-crm-client</artifactId>
  29. <version>${project.version}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.xxh.cloud</groupId>
  33. <artifactId>healthy-doctor-data-client</artifactId>
  34. <version>${project.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.xxh.cloud</groupId>
  38. <artifactId>healthy-basic-common-constant</artifactId>
  39. <version>${project.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.xxh.cloud</groupId>
  43. <artifactId>user-client-api</artifactId>
  44. <version>${project.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.xxh.cloud</groupId>
  48. <artifactId>metadata-client-api</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.xuxueli</groupId>
  52. <artifactId>xxl-job-core</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.baomidou</groupId>
  56. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  57. <version>3.5.1</version>
  58. </dependency>
  59. </dependencies>
  60. </project>