pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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. <configuration>
  19. <fork>true</fork>
  20. <layout>ZIP</layout>
  21. </configuration>
  22. </plugin>
  23. <!--mybatis.generator maven插件-->
  24. <plugin>
  25. <groupId>org.mybatis.generator</groupId>
  26. <artifactId>mybatis-generator-maven-plugin</artifactId>
  27. <version>1.3.7</version>
  28. <configuration>
  29. <configurationFile>src/main/resources/mybatis-generator.xml</configurationFile>
  30. <overwrite>true</overwrite>
  31. </configuration>
  32. <dependencies>
  33. <dependency>
  34. <groupId>mysql</groupId>
  35. <artifactId>mysql-connector-java</artifactId>
  36. <version>8.0.16</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.itfsw</groupId>
  40. <artifactId>mybatis-generator-plugin</artifactId>
  41. <version>1.3.7</version>
  42. </dependency>
  43. </dependencies>
  44. </plugin>
  45. </plugins>
  46. </build>
  47. <dependencies>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-web</artifactId>
  51. <exclusions>
  52. <!--排除logback-->
  53. <exclusion>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-logging</artifactId>
  56. </exclusion>
  57. </exclusions>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter-test</artifactId>
  62. <scope>test</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-devtools</artifactId>
  67. <scope>runtime</scope>
  68. <optional>true</optional>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-starter-aop</artifactId>
  73. </dependency>
  74. <!--log4j2 依赖-->
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-log4j2</artifactId>
  78. </dependency>
  79. <!--异步日志依赖-->
  80. <dependency>
  81. <groupId>com.lmax</groupId>
  82. <artifactId>disruptor</artifactId>
  83. <version>3.3.7</version>
  84. </dependency>
  85. <!-- lombok -->
  86. <dependency>
  87. <groupId>org.projectlombok</groupId>
  88. <artifactId>lombok</artifactId>
  89. <version>1.18.4</version>
  90. </dependency>
  91. <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
  92. <dependency>
  93. <groupId>com.google.code.gson</groupId>
  94. <artifactId>gson</artifactId>
  95. <version>2.8.5</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.apache.commons</groupId>
  99. <artifactId>commons-lang3</artifactId>
  100. <version>3.8</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>commons-io</groupId>
  104. <artifactId>commons-io</artifactId>
  105. <version>2.4</version>
  106. </dependency>
  107. <!--httpClient-->
  108. <dependency>
  109. <groupId>org.apache.httpcomponents</groupId>
  110. <artifactId>httpclient</artifactId>
  111. <version>4.5.3</version>
  112. </dependency>
  113. <!--email-->
  114. <dependency>
  115. <groupId>javax.mail</groupId>
  116. <artifactId>javax.mail-api</artifactId>
  117. <version>1.6.2</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.sun.mail</groupId>
  121. <artifactId>javax.mail</artifactId>
  122. <version>1.6.2</version>
  123. </dependency>
  124. <!--mybatis-->
  125. <dependency>
  126. <groupId>org.mybatis.spring.boot</groupId>
  127. <artifactId>mybatis-spring-boot-starter</artifactId>
  128. <version>1.3.2</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>com.alibaba</groupId>
  132. <artifactId>druid-spring-boot-starter</artifactId>
  133. <version>1.1.10</version>
  134. </dependency>
  135. <!--mysql-->
  136. <dependency>
  137. <groupId>mysql</groupId>
  138. <artifactId>mysql-connector-java</artifactId>
  139. <version>8.0.16</version>
  140. </dependency>
  141. </dependencies>
  142. </project>