pom-war.xml 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>iot.wumao</groupId>
  5. <artifactId>wumao-dtu</artifactId>
  6. <version>1.0.0</version>
  7. <packaging>pom</packaging>
  8. <name>wumao-dtu</name>
  9. <url>https://www.wumao.iot</url>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>2.1.8.RELEASE</version>
  14. </parent>
  15. <modules>
  16. <module>wumao-common</module>
  17. <module>wumao-udp-service</module>
  18. <module>wumao-generator</module>
  19. </modules>
  20. <properties>
  21. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  22. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  23. <java.version>1.8</java.version>
  24. <junit.version>4.12</junit.version>
  25. <jedis.version>2.9.0</jedis.version>
  26. <druid.version>1.1.13</druid.version>
  27. <mybatisplus.version>3.1.2</mybatisplus.version>
  28. <mysql.version>8.0.16</mysql.version>
  29. <mssql.version>4.0</mssql.version>
  30. <oracle.version>11.2.0.3</oracle.version>
  31. <commons.lang.version>2.6</commons.lang.version>
  32. <commons.fileupload.version>1.3.1</commons.fileupload.version>
  33. <commons.io.version>2.5</commons.io.version>
  34. <commons.codec.version>1.10</commons.codec.version>
  35. <fastjson.version>1.2.58</fastjson.version>
  36. <joda.time.version>2.9.9</joda.time.version>
  37. <gson.version>2.8.5</gson.version>
  38. <lombok.version>1.18.4</lombok.version>
  39. <swagger.version>2.7.0</swagger.version>
  40. </properties>
  41. <dependencies>
  42. <dependency>
  43. <groupId>junit</groupId>
  44. <artifactId>junit</artifactId>
  45. <version>${junit.version}</version>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-test</artifactId>
  51. <scope>test</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-web</artifactId>
  56. <!--war包时 去除内嵌tomcat -->
  57. <!--<exclusions>-->
  58. <!--<exclusion>-->
  59. <!--<groupId>org.springframework.boot</groupId>-->
  60. <!--<artifactId>spring-boot-starter-tomcat</artifactId>-->
  61. <!--</exclusion>-->
  62. <!--</exclusions>-->
  63. </dependency>
  64. <!--war servlet依赖-->
  65. <!--<dependency>-->
  66. <!--<groupId>javax.servlet</groupId>-->
  67. <!--<artifactId>javax.servlet-api</artifactId>-->
  68. <!--<version>3.1.0</version>-->
  69. <!--<scope>provided</scope>-->
  70. <!--</dependency>-->
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-aop</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework</groupId>
  77. <artifactId>spring-context-support</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-starter-data-redis</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-starter-amqp</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-configuration-processor</artifactId>
  90. <optional>true</optional>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework.boot</groupId>
  94. <artifactId>spring-boot-starter-integration</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.springframework.integration</groupId>
  98. <artifactId>spring-integration-ip</artifactId>
  99. </dependency>
  100. <!--redis-->
  101. <dependency>
  102. <groupId>redis.clients</groupId>
  103. <artifactId>jedis</artifactId>
  104. <version>${jedis.version}</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.apache.commons</groupId>
  108. <artifactId>commons-lang3</artifactId>
  109. <version>3.9</version>
  110. </dependency>
  111. <!-- mysql驱动 -->
  112. <dependency>
  113. <groupId>mysql</groupId>
  114. <artifactId>mysql-connector-java</artifactId>
  115. <version>${mysql.version}</version>
  116. </dependency>
  117. <!-- oracle驱动 -->
  118. <dependency>
  119. <groupId>com.oracle</groupId>
  120. <artifactId>ojdbc6</artifactId>
  121. <version>${oracle.version}</version>
  122. </dependency>
  123. <!-- mssql驱动 -->
  124. <dependency>
  125. <groupId>com.microsoft.sqlserver</groupId>
  126. <artifactId>sqljdbc4</artifactId>
  127. <version>${mssql.version}</version>
  128. </dependency>
  129. <!-- postgresql驱动 -->
  130. <dependency>
  131. <groupId>org.postgresql</groupId>
  132. <artifactId>postgresql</artifactId>
  133. </dependency>
  134. <dependency>
  135. <groupId>com.alibaba</groupId>
  136. <artifactId>druid-spring-boot-starter</artifactId>
  137. <version>${druid.version}</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>com.baomidou</groupId>
  141. <artifactId>mybatis-plus-boot-starter</artifactId>
  142. <version>${mybatisplus.version}</version>
  143. <exclusions>
  144. <exclusion>
  145. <groupId>com.baomidou</groupId>
  146. <artifactId>mybatis-plus-generator</artifactId>
  147. </exclusion>
  148. </exclusions>
  149. </dependency>
  150. <dependency>
  151. <groupId>com.alibaba</groupId>
  152. <artifactId>fastjson</artifactId>
  153. <version>${fastjson.version}</version>
  154. </dependency>
  155. <dependency>
  156. <groupId>commons-lang</groupId>
  157. <artifactId>commons-lang</artifactId>
  158. <version>${commons.lang.version}</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>commons-fileupload</groupId>
  162. <artifactId>commons-fileupload</artifactId>
  163. <version>${commons.fileupload.version}</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>commons-io</groupId>
  167. <artifactId>commons-io</artifactId>
  168. <version>${commons.io.version}</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>commons-codec</groupId>
  172. <artifactId>commons-codec</artifactId>
  173. <version>${commons.codec.version}</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>joda-time</groupId>
  177. <artifactId>joda-time</artifactId>
  178. <version>${joda.time.version}</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>com.google.code.gson</groupId>
  182. <artifactId>gson</artifactId>
  183. <version>${gson.version}</version>
  184. </dependency>
  185. <dependency>
  186. <groupId>org.projectlombok</groupId>
  187. <artifactId>lombok</artifactId>
  188. <version>${lombok.version}</version>
  189. </dependency>
  190. <dependency>
  191. <groupId>io.springfox</groupId>
  192. <artifactId>springfox-swagger2</artifactId>
  193. <version>${swagger.version}</version>
  194. </dependency>
  195. <dependency>
  196. <groupId>io.springfox</groupId>
  197. <artifactId>springfox-swagger-ui</artifactId>
  198. <version>${swagger.version}</version>
  199. </dependency>
  200. </dependencies>
  201. <!-- 阿里云maven仓库 -->
  202. <repositories>
  203. <repository>
  204. <id>public</id>
  205. <name>aliyun nexus</name>
  206. <url>https://maven.aliyun.com/nexus/content/groups/public/</url>
  207. <releases>
  208. <enabled>true</enabled>
  209. </releases>
  210. </repository>
  211. </repositories>
  212. <pluginRepositories>
  213. <pluginRepository>
  214. <id>public</id>
  215. <name>aliyun nexus</name>
  216. <url>https://maven.aliyun.com/nexus/content/groups/public/</url>
  217. <releases>
  218. <enabled>true</enabled>
  219. </releases>
  220. <snapshots>
  221. <enabled>false</enabled>
  222. </snapshots>
  223. </pluginRepository>
  224. </pluginRepositories>
  225. </project>