pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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. <parent>
  6. <artifactId>springboot-parent</artifactId>
  7. <groupId>com.alvin.springboot</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>springboot-main</artifactId>
  12. <build>
  13. <plugins>
  14. <!--maven项目打包-->
  15. <plugin>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-maven-plugin</artifactId>
  18. <version>2.4.1</version>
  19. <configuration>
  20. <fork>true</fork>
  21. <layout>ZIP</layout>
  22. </configuration>
  23. </plugin>
  24. </plugins>
  25. </build>
  26. <properties>
  27. <jackson.version>2.11.0</jackson.version>
  28. <tomcat.version>9.0.54</tomcat.version>
  29. </properties>
  30. <dependencies>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-web</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-test</artifactId>
  38. <scope>test</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-devtools</artifactId>
  43. <scope>runtime</scope>
  44. <optional>true</optional>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-aop</artifactId>
  49. </dependency>
  50. <!-- lombok -->
  51. <dependency>
  52. <groupId>org.projectlombok</groupId>
  53. <artifactId>lombok</artifactId>
  54. <version>1.18.22</version>
  55. </dependency>
  56. <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
  57. <dependency>
  58. <groupId>com.google.code.gson</groupId>
  59. <artifactId>gson</artifactId>
  60. <version>2.9.0</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.apache.commons</groupId>
  64. <artifactId>commons-lang3</artifactId>
  65. <version>3.12.0</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>commons-io</groupId>
  69. <artifactId>commons-io</artifactId>
  70. <version>2.11.0</version>
  71. </dependency>
  72. <!--httpClient-->
  73. <dependency>
  74. <groupId>org.apache.httpcomponents</groupId>
  75. <artifactId>httpclient</artifactId>
  76. <version>4.5.13</version>
  77. </dependency>
  78. <!--email-->
  79. <dependency>
  80. <groupId>javax.mail</groupId>
  81. <artifactId>javax.mail-api</artifactId>
  82. <version>1.6.2</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.sun.mail</groupId>
  86. <artifactId>javax.mail</artifactId>
  87. <version>1.6.2</version>
  88. </dependency>
  89. <!--========= mybatis =========-->
  90. <dependency>
  91. <groupId>com.baomidou</groupId>
  92. <artifactId>mybatis-plus-boot-starter</artifactId>
  93. <version>3.5.1</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.alibaba</groupId>
  97. <artifactId>druid-spring-boot-starter</artifactId>
  98. <version>1.2.11</version>
  99. </dependency>
  100. <!--mysql-->
  101. <dependency>
  102. <groupId>mysql</groupId>
  103. <artifactId>mysql-connector-java</artifactId>
  104. <version>8.0.30</version>
  105. </dependency>
  106. </dependencies>
  107. </project>