pom.xml 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  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.yunfeiyun</groupId>
  7. <artifactId>agmp</artifactId>
  8. <version>1.0.0</version>
  9. <name>云飞智慧农业综合管理平台</name>
  10. <url>http://www.hnyfkj.com.cn/</url>
  11. <description>云飞智慧农业综合管理平台</description>
  12. <properties>
  13. <project.version>1.0.0</project.version>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  16. <java.version>1.8</java.version>
  17. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  18. <druid.version>1.2.16</druid.version>
  19. <bitwalker.version>1.21</bitwalker.version>
  20. <swagger.version>3.0.0</swagger.version>
  21. <kaptcha.version>2.3.3</kaptcha.version>
  22. <pagehelper.boot.version>1.4.6</pagehelper.boot.version>
  23. <fastjson.version>2.0.25</fastjson.version>
  24. <oshi.version>6.4.0</oshi.version>
  25. <commons.io.version>2.11.0</commons.io.version>
  26. <commons.collections.version>3.2.2</commons.collections.version>
  27. <poi.version>4.1.2</poi.version>
  28. <velocity.version>2.3</velocity.version>
  29. <jwt.version>0.9.1</jwt.version>
  30. <amqp.version>2.1.8.RELEASE</amqp.version>
  31. <agmp.framework.version>1.0.1</agmp.framework.version>
  32. </properties>
  33. <!-- 依赖声明 -->
  34. <dependencyManagement>
  35. <dependencies>
  36. <!-- 代码生成-->
  37. <dependency>
  38. <groupId>com.yunfeiyun</groupId>
  39. <artifactId>agmp-codegen</artifactId>
  40. <version>${agmp.framework.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.yunfeiyun</groupId>
  44. <artifactId>agmp-framework</artifactId>
  45. <version>${agmp.framework.version}</version>
  46. </dependency>
  47. <!-- SpringBoot的依赖配置-->
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-dependencies</artifactId>
  51. <version>2.5.14</version>
  52. <type>pom</type>
  53. <scope>import</scope>
  54. </dependency>
  55. <!-- 阿里数据库连接池 -->
  56. <dependency>
  57. <groupId>com.alibaba</groupId>
  58. <artifactId>druid-spring-boot-starter</artifactId>
  59. <version>${druid.version}</version>
  60. </dependency>
  61. <!-- 解析客户端操作系统、浏览器等 -->
  62. <dependency>
  63. <groupId>eu.bitwalker</groupId>
  64. <artifactId>UserAgentUtils</artifactId>
  65. <version>${bitwalker.version}</version>
  66. </dependency>
  67. <!-- pagehelper 分页插件 -->
  68. <dependency>
  69. <groupId>com.github.pagehelper</groupId>
  70. <artifactId>pagehelper-spring-boot-starter</artifactId>
  71. <version>${pagehelper.boot.version}</version>
  72. </dependency>
  73. <!-- 获取系统信息 -->
  74. <dependency>
  75. <groupId>com.github.oshi</groupId>
  76. <artifactId>oshi-core</artifactId>
  77. <version>${oshi.version}</version>
  78. </dependency>
  79. <!-- Swagger3依赖 -->
  80. <dependency>
  81. <groupId>io.springfox</groupId>
  82. <artifactId>springfox-boot-starter</artifactId>
  83. <version>${swagger.version}</version>
  84. <exclusions>
  85. <exclusion>
  86. <groupId>io.swagger</groupId>
  87. <artifactId>swagger-models</artifactId>
  88. </exclusion>
  89. </exclusions>
  90. </dependency>
  91. <!-- io常用工具类 -->
  92. <dependency>
  93. <groupId>commons-io</groupId>
  94. <artifactId>commons-io</artifactId>
  95. <version>${commons.io.version}</version>
  96. </dependency>
  97. <!-- excel工具 -->
  98. <dependency>
  99. <groupId>org.apache.poi</groupId>
  100. <artifactId>poi-ooxml</artifactId>
  101. <version>${poi.version}</version>
  102. </dependency>
  103. <!-- velocity代码生成使用模板 -->
  104. <dependency>
  105. <groupId>org.apache.velocity</groupId>
  106. <artifactId>velocity-engine-core</artifactId>
  107. <version>${velocity.version}</version>
  108. </dependency>
  109. <!-- collections工具类 -->
  110. <dependency>
  111. <groupId>commons-collections</groupId>
  112. <artifactId>commons-collections</artifactId>
  113. <version>${commons.collections.version}</version>
  114. </dependency>
  115. <!-- 阿里JSON解析器 -->
  116. <dependency>
  117. <groupId>com.alibaba.fastjson2</groupId>
  118. <artifactId>fastjson2</artifactId>
  119. <version>${fastjson.version}</version>
  120. </dependency>
  121. <!-- Token生成与解析-->
  122. <dependency>
  123. <groupId>io.jsonwebtoken</groupId>
  124. <artifactId>jjwt</artifactId>
  125. <version>${jwt.version}</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.springframework.boot</groupId>
  129. <artifactId>spring-boot-starter-amqp</artifactId>
  130. <version>${amqp.version}</version>
  131. </dependency>
  132. <!-- 验证码 -->
  133. <dependency>
  134. <groupId>pro.fessional</groupId>
  135. <artifactId>kaptcha</artifactId>
  136. <version>${kaptcha.version}</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>com.googlecode.concurrentlinkedhashmap</groupId>
  140. <artifactId>concurrentlinkedhashmap-lru</artifactId>
  141. <version>1.4.2</version>
  142. <scope>compile</scope>
  143. </dependency>
  144. <dependency>
  145. <groupId>com.google.zxing</groupId>
  146. <artifactId>javase</artifactId>
  147. <version>3.3.3</version>
  148. </dependency>
  149. </dependencies>
  150. </dependencyManagement>
  151. <modules>
  152. <module>agmp-portal</module>
  153. </modules>
  154. <packaging>pom</packaging>
  155. <build>
  156. <plugins>
  157. <plugin>
  158. <groupId>org.apache.maven.plugins</groupId>
  159. <artifactId>maven-compiler-plugin</artifactId>
  160. <version>3.1</version>
  161. <configuration>
  162. <source>${java.version}</source>
  163. <target>${java.version}</target>
  164. <encoding>${project.build.sourceEncoding}</encoding>
  165. </configuration>
  166. </plugin>
  167. </plugins>
  168. </build>
  169. <repositories>
  170. <repository>
  171. <id>public</id>
  172. <name>aliyun nexus</name>
  173. <url>https://maven.aliyun.com/repository/public</url>
  174. <releases>
  175. <enabled>true</enabled>
  176. </releases>
  177. </repository>
  178. </repositories>
  179. <pluginRepositories>
  180. <pluginRepository>
  181. <id>public</id>
  182. <name>aliyun nexus</name>
  183. <url>https://maven.aliyun.com/repository/public</url>
  184. <releases>
  185. <enabled>true</enabled>
  186. </releases>
  187. <snapshots>
  188. <enabled>false</enabled>
  189. </snapshots>
  190. </pluginRepository>
  191. </pluginRepositories>
  192. </project>