pom.xml 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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.blue</groupId>
  7. <artifactId>fire</artifactId>
  8. <packaging>pom</packaging>
  9. <version>1.0</version>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>2.4.5</version>
  14. </parent>
  15. <modules>
  16. <module>modules</module>
  17. <module>common</module>
  18. </modules>
  19. <properties>
  20. <maven.compiler.source>16</maven.compiler.source>
  21. <maven.compiler.target>16</maven.compiler.target>
  22. </properties>
  23. <!--依赖管理,用于包的管理,子模块只需要直接引入,而不需要指定版本-->
  24. <dependencyManagement>
  25. <dependencies>
  26. <dependency>
  27. <groupId>com.alibaba.cloud</groupId>
  28. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  29. <version>2021.1</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.alibaba.cloud</groupId>
  33. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  34. <version>2021.1</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-web</artifactId>
  39. <version>2.4.5</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-validation</artifactId>
  44. <version>2.4.5</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.cloud</groupId>
  48. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  49. <version>3.0.2</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.spring4all</groupId>
  53. <artifactId>swagger-spring-boot-starter</artifactId>
  54. <version>1.9.1.RELEASE</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>io.swagger</groupId>
  58. <artifactId>swagger-annotations</artifactId>
  59. <version>1.5.24</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.alibaba</groupId>
  63. <artifactId>fastjson</artifactId>
  64. <version>1.2.9</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.apache.rocketmq</groupId>
  68. <artifactId>rocketmq-spring-boot-starter</artifactId>
  69. <version>2.2.0</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.projectlombok</groupId>
  73. <artifactId>lombok</artifactId>
  74. <version>1.18.20</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.baomidou</groupId>
  78. <artifactId>mybatis-plus-boot-starter</artifactId>
  79. <version>3.3.0</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>cn.hutool</groupId>
  83. <artifactId>hutool-all</artifactId>
  84. <version>5.2.0</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.apache.poi</groupId>
  88. <artifactId>poi-ooxml</artifactId>
  89. <version>5.0.0</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>io.jsonwebtoken</groupId>
  93. <artifactId>jjwt</artifactId>
  94. <version>0.9.1</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>javax.xml.bind</groupId>
  98. <artifactId>jaxb-api</artifactId>
  99. <version>2.3.0</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.sun.xml.bind</groupId>
  103. <artifactId>jaxb-impl</artifactId>
  104. <version>2.3.0</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.sun.xml.bind</groupId>
  108. <artifactId>jaxb-core</artifactId>
  109. <version>2.3.0</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>javax.activation</groupId>
  113. <artifactId>activation</artifactId>
  114. <version>1.1.1</version>
  115. </dependency>
  116. <!-- 阿里云oss-->
  117. <dependency>
  118. <groupId>com.aliyun.oss</groupId>
  119. <artifactId>aliyun-sdk-oss</artifactId>
  120. <version>3.10.2</version>
  121. </dependency>
  122. </dependencies>
  123. </dependencyManagement>
  124. <build>
  125. <finalName>${project.artifactId}</finalName>
  126. <plugins>
  127. <plugin>
  128. <groupId>org.codehaus.mojo</groupId>
  129. <artifactId>versions-maven-plugin</artifactId>
  130. <version>2.7</version>
  131. <configuration>
  132. <generateBackupPoms>false</generateBackupPoms>
  133. </configuration>
  134. </plugin>
  135. <plugin>
  136. <groupId>org.apache.maven.plugins</groupId>
  137. <artifactId>maven-compiler-plugin</artifactId>
  138. <version>3.8.1</version>
  139. <configuration>
  140. <source>16</source>
  141. <target>16</target>
  142. <encoding>UTF-8</encoding>
  143. </configuration>
  144. </plugin>
  145. </plugins>
  146. </build>
  147. </project>