pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. <groupId>com.xxh.cloud.etl</groupId>
  7. <artifactId>healthy-etl</artifactId>
  8. <version>1.0.0</version>
  9. <packaging>pom</packaging>
  10. <properties>
  11. <maven.compiler.source>8</maven.compiler.source>
  12. <maven.compiler.target>8</maven.compiler.target>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <health.etl.version>1.0.0</health.etl.version>
  15. <xx.framework.version>1.0.0</xx.framework.version>
  16. <xx.user.version>1.23.03-snapshot</xx.user.version>
  17. </properties>
  18. <dependencyManagement>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.xxh.cloud</groupId>
  22. <artifactId>xx-framework-dependencies</artifactId>
  23. <version>${xx.framework.version}</version>
  24. <type>pom</type>
  25. <scope>import</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.xxh.cloud</groupId>
  29. <artifactId>xx-config-script</artifactId>
  30. <version>${xx.framework.version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.xxh.cloud</groupId>
  34. <artifactId>user-client-api</artifactId>
  35. <version>${xx.user.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.xxh.cloud</groupId>
  39. <artifactId>basic-client-api</artifactId>
  40. <version>${xx.user.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.xxh.cloud</groupId>
  44. <artifactId>healthy-common-model</artifactId>
  45. <version>1.0.0</version>
  46. </dependency>
  47. </dependencies>
  48. </dependencyManagement>
  49. <modules>
  50. <module>health-etl-config-web</module>
  51. <module>health-etl-config-framework</module>
  52. <module>health-etl-config-client</module>
  53. <module>health-etl-execute-web</module>
  54. <module>health-etl-execute-framework</module>
  55. <module>health-etl-config-run</module>
  56. <module>health-etl-sync-framework</module>
  57. <module>health-etl-data-framework</module>
  58. <module>health-etl-data-web</module>
  59. <module>health-etl-sync-web</module>
  60. <module>health-etl-common</module>
  61. </modules>
  62. </project>