pom.xml 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.2.2.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.gz</groupId>
  12. <artifactId>guihua-archives</artifactId>
  13. <version>1.0.0</version>
  14. <name>guihua-archives</name>
  15. <description>规划档案</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <druid.version>1.1.17</druid.version>
  19. <mysql.connector.version>8.0.15</mysql.connector.version>
  20. <log4j.version>1.2.16</log4j.version>
  21. <lombok.version>1.18.12</lombok.version>
  22. <fast.json.version>1.2.47</fast.json.version>
  23. <tk.mapper.version>2.1.5</tk.mapper.version>
  24. <japidocs.version>1.4</japidocs.version>
  25. <pagehelper.spring.boot.version>1.2.3</pagehelper.spring.boot.version>
  26. <java.jwt.vetsion>3.7.0</java.jwt.vetsion>
  27. <apache.poi.version>3.17</apache.poi.version>
  28. <hutool.version>5.4.0</hutool.version>
  29. <screw.version>1.0.3</screw.version>
  30. <aliyun.sdk.version>4.5.3</aliyun.sdk.version>
  31. <aliyun.oss.sdk.version>3.10.2</aliyun.oss.sdk.version>
  32. <poi.version>4.1.2</poi.version>
  33. <!-- 跳过打包测试 -->
  34. <skipTests>true</skipTests>
  35. </properties>
  36. <dependencies>
  37. <!-- aop-->
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-aop</artifactId>
  41. </dependency>
  42. <!-- mybatis-->
  43. <dependency>
  44. <groupId>tk.mybatis</groupId>
  45. <artifactId>mapper-spring-boot-starter</artifactId>
  46. <version>${tk.mapper.version}</version>
  47. </dependency>
  48. <!-- Mysql驱动-->
  49. <dependency>
  50. <groupId>mysql</groupId>
  51. <artifactId>mysql-connector-java</artifactId>
  52. <scope>runtime</scope>
  53. <version>${mysql.connector.version}</version>
  54. </dependency>
  55. <!-- druid连接池-->
  56. <dependency>
  57. <groupId>com.alibaba</groupId>
  58. <artifactId>druid-spring-boot-starter</artifactId>
  59. <version>${druid.version}</version>
  60. </dependency>
  61. <!-- log4j-->
  62. <dependency>
  63. <groupId>log4j</groupId>
  64. <artifactId>log4j</artifactId>
  65. <version>${log4j.version}</version>
  66. </dependency>
  67. <!-- lombok-->
  68. <dependency>
  69. <groupId>org.projectlombok</groupId>
  70. <artifactId>lombok</artifactId>
  71. <version>${lombok.version}</version>
  72. </dependency>
  73. <!-- fastJson-->
  74. <dependency>
  75. <groupId>com.alibaba</groupId>
  76. <artifactId>fastjson</artifactId>
  77. <version>${fast.json.version}</version>
  78. </dependency>
  79. <!-- 分页插件-->
  80. <dependency>
  81. <groupId>com.github.pagehelper</groupId>
  82. <artifactId>pagehelper-spring-boot-starter</artifactId>
  83. <version>${pagehelper.spring.boot.version}</version>
  84. </dependency>
  85. <!-- JWT-->
  86. <dependency>
  87. <groupId>com.auth0</groupId>
  88. <artifactId>java-jwt</artifactId>
  89. <version>${java.jwt.vetsion}</version>
  90. </dependency>
  91. <!-- Hutool-->
  92. <dependency>
  93. <groupId>cn.hutool</groupId>
  94. <artifactId>hutool-all</artifactId>
  95. <version>${hutool.version}</version>
  96. </dependency>
  97. <!-- spring-web-->
  98. <dependency>
  99. <groupId>org.springframework.boot</groupId>
  100. <artifactId>spring-boot-starter-web</artifactId>
  101. </dependency>
  102. <!-- redis依赖包 -->
  103. <dependency>
  104. <groupId>org.springframework.boot</groupId>
  105. <artifactId>spring-boot-starter-data-redis</artifactId>
  106. </dependency>
  107. <!-- webSocket-->
  108. <dependency>
  109. <groupId>org.springframework.boot</groupId>
  110. <artifactId>spring-boot-starter-websocket</artifactId>
  111. </dependency>
  112. <!-- poi-->
  113. <dependency>
  114. <groupId>org.apache.poi</groupId>
  115. <artifactId>poi-ooxml</artifactId>
  116. <version>${poi.version}</version>
  117. </dependency>
  118. <!-- rabbitmq-->
  119. <dependency>
  120. <groupId>org.springframework.boot</groupId>
  121. <artifactId>spring-boot-starter-amqp</artifactId>
  122. </dependency>
  123. <!-- 单元测试模块-->
  124. <dependency>
  125. <groupId>org.springframework.boot</groupId>
  126. <artifactId>spring-boot-starter-test</artifactId>
  127. <scope>test</scope>
  128. <exclusions>
  129. <exclusion>
  130. <groupId>org.junit.vintage</groupId>
  131. <artifactId>junit-vintage-engine</artifactId>
  132. </exclusion>
  133. </exclusions>
  134. </dependency>
  135. </dependencies>
  136. <build>
  137. <plugins>
  138. <plugin>
  139. <groupId>org.springframework.boot</groupId>
  140. <artifactId>spring-boot-maven-plugin</artifactId>
  141. </plugin>
  142. </plugins>
  143. </build>
  144. </project>