pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.hrsk.pangu</groupId>
  5. <artifactId>pangu-archetype-web</artifactId>
  6. <version>1.0-SNAPSHOT</version>
  7. <packaging>pom</packaging>
  8. <description>惠融数科基于COLA构建的应用骨架</description>
  9. <properties>
  10. <maven.compiler.source>8</maven.compiler.source>
  11. <maven.compiler.target>8</maven.compiler.target>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <atlantis-component.version>1.0.0</atlantis-component.version>
  14. <spring-boot.version>2.7.6</spring-boot.version>
  15. <spring-cloud-alibaba.version>2021.0.5.0</spring-cloud-alibaba.version>
  16. <mybatis-starter.version>2.2.2</mybatis-starter.version>
  17. <mybatis-plus.version>3.5.4.1</mybatis-plus.version>
  18. <druid-starter.version>1.2.9</druid-starter.version>
  19. </properties>
  20. <modules>
  21. <module>start</module>
  22. <module>pangu-archetype-web-app</module>
  23. <module>pangu-archetype-web-adapter</module>
  24. <module>pangu-archetype-web-client</module>
  25. <module>pangu-archetype-web-infrastructure</module>
  26. <module>pangu-archetype-web-domain</module>
  27. </modules>
  28. <dependencies>
  29. <dependency>
  30. <groupId>org.projectlombok</groupId>
  31. <artifactId>lombok</artifactId>
  32. <scope>provided</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>junit</groupId>
  36. <artifactId>junit</artifactId>
  37. <scope>test</scope>
  38. </dependency>
  39. </dependencies>
  40. <dependencyManagement>
  41. <dependencies>
  42. <!-- 应用模块依赖-start -->
  43. <dependency>
  44. <groupId>com.hrsk.pangu</groupId>
  45. <artifactId>start</artifactId>
  46. <version>${project.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.hrsk.pangu</groupId>
  50. <artifactId>pangu-archetype-web-app</artifactId>
  51. <version>1.0-SNAPSHOT</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.hrsk.pangu</groupId>
  55. <artifactId>pangu-archetype-web-adapter</artifactId>
  56. <version>1.0-SNAPSHOT</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.hrsk.pangu</groupId>
  60. <artifactId>pangu-archetype-web-client</artifactId>
  61. <version>1.0-SNAPSHOT</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.hrsk.pangu</groupId>
  65. <artifactId>pangu-archetype-web-infrastructure</artifactId>
  66. <version>1.0-SNAPSHOT</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.hrsk.pangu</groupId>
  70. <artifactId>pangu-archetype-web-domain</artifactId>
  71. <version>1.0-SNAPSHOT</version>
  72. </dependency>
  73. <!-- 应用模块依赖-end -->
  74. <dependency>
  75. <groupId>com.hrsk.pangu</groupId>
  76. <artifactId>pangu-component-bom</artifactId>
  77. <version>${atlantis-component.version}</version>
  78. <type>pom</type>
  79. <scope>import</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-dependencies</artifactId>
  84. <version>${spring-boot.version}</version>
  85. <type>pom</type>
  86. <scope>import</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.mybatis.spring.boot</groupId>
  90. <artifactId>mybatis-spring-boot-starter</artifactId>
  91. <version>${mybatis-starter.version}</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.alibaba</groupId>
  95. <artifactId>druid-spring-boot-starter</artifactId>
  96. <version>${druid-starter.version}</version>
  97. </dependency>
  98. </dependencies>
  99. </dependencyManagement>
  100. </project>