pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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.projectlombok</groupId>
  68. <artifactId>lombok</artifactId>
  69. <version>1.18.20</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.baomidou</groupId>
  73. <artifactId>mybatis-plus-boot-starter</artifactId>
  74. <version>3.3.0</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>cn.hutool</groupId>
  78. <artifactId>hutool-all</artifactId>
  79. <version>5.2.0</version>
  80. </dependency>
  81. </dependencies>
  82. </dependencyManagement>
  83. <build>
  84. <finalName>${project.artifactId}</finalName>
  85. </build>
  86. </project>