pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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</groupId>
  7. <artifactId>xx-user-java</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. <revision>1.0.0</revision>
  15. </properties>
  16. <dependencyManagement>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.xxh.cloud</groupId>
  20. <artifactId>xx-framework-dependencies</artifactId>
  21. <version>${revision}</version>
  22. <type>pom</type>
  23. <scope>import</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.xxh.cloud</groupId>
  27. <artifactId>basic-framework</artifactId>
  28. <version>${project.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.xxh.cloud</groupId>
  32. <artifactId>user-framework</artifactId>
  33. <version>${project.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.xxh.cloud</groupId>
  37. <artifactId>customer-user-framework</artifactId>
  38. <version>${project.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.xxh.cloud</groupId>
  42. <artifactId>third-framework</artifactId>
  43. <version>${project.version}</version>
  44. </dependency>
  45. <!-- client -->
  46. <dependency>
  47. <groupId>com.xxh.cloud</groupId>
  48. <artifactId>basic-client-api</artifactId>
  49. <version>${project.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.xxh.cloud</groupId>
  53. <artifactId>user-client-api</artifactId>
  54. <version>${project.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.xxh.cloud</groupId>
  58. <artifactId>customer-user-client-api</artifactId>
  59. <version>${project.version}</version>
  60. </dependency>
  61. </dependencies>
  62. </dependencyManagement>
  63. <modules>
  64. <module>user-framework</module>
  65. <module>user-client-api</module>
  66. <module>user-manager-com-api</module>
  67. <module>user-manager-sys-api</module>
  68. <module>user-application-com-api</module>
  69. <module>user-application-sys-api</module>
  70. <module>basic-framework</module>
  71. <module>basic-manager-sys-api</module>
  72. <module>basic-application-api</module>
  73. <module>basic-client-api</module>
  74. <module>customer-user-framework</module>
  75. <module>customer-user-client-api</module>
  76. <module>customer-user-manager-sys-api</module>
  77. <module>customer-user-manager-com-api</module>
  78. <module>customer-user-application-api</module>
  79. <module>biz-run-application</module>
  80. <module>third-framework</module>
  81. <module>log-framework</module>
  82. <module>log-manager-api</module>
  83. <module>log-application-api</module>
  84. <module>store-file-framework</module>
  85. <module>store-file-application-api</module>
  86. <module>store-file-manager-api</module>
  87. <module>log-manager-client</module>
  88. </modules>
  89. </project>