pom.xml 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.zd</groupId>
  7. <artifactId>zd-modules</artifactId>
  8. <version>3.1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>zd-modules-laboratory</artifactId>
  12. <description>
  13. zd-modules-laboratory系统模块
  14. </description>
  15. <dependencies>
  16. <!-- SpringCloud Alibaba Nacos -->
  17. <dependency>
  18. <groupId>com.alibaba.cloud</groupId>
  19. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  20. </dependency>
  21. <!-- SpringCloud Alibaba Nacos Config -->
  22. <dependency>
  23. <groupId>com.alibaba.cloud</groupId>
  24. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.alibaba.nacos</groupId>
  28. <artifactId>nacos-spring-context</artifactId>
  29. <version>0.2.3-RC1</version>
  30. </dependency>
  31. <!-- SpringCloud Alibaba Sentinel -->
  32. <dependency>
  33. <groupId>com.alibaba.cloud</groupId>
  34. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  35. </dependency>
  36. <!-- SpringBoot Actuator -->
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-actuator</artifactId>
  40. </dependency>
  41. <!-- Swagger UI -->
  42. <!-- <dependency>-->
  43. <!-- <groupId>io.springfox</groupId>-->
  44. <!-- <artifactId>springfox-swagger-ui</artifactId>-->
  45. <!-- <version>${swagger.fox.version}</version>-->
  46. <!-- </dependency>-->
  47. <!-- Mysql Connector -->
  48. <dependency>
  49. <groupId>mysql</groupId>
  50. <artifactId>mysql-connector-java</artifactId>
  51. </dependency>
  52. <!-- zd Common DataSource -->
  53. <dependency>
  54. <groupId>com.zd</groupId>
  55. <artifactId>zd-common-datasource</artifactId>
  56. </dependency>
  57. <!-- zd Common DataScope -->
  58. <dependency>
  59. <groupId>com.zd</groupId>
  60. <artifactId>zd-common-datascope</artifactId>
  61. <exclusions>
  62. <exclusion>
  63. <groupId>org.springframework</groupId>
  64. <artifactId>spring-webmvc</artifactId>
  65. </exclusion>
  66. </exclusions>
  67. </dependency>
  68. <!-- zd Common Log -->
  69. <dependency>
  70. <groupId>com.zd</groupId>
  71. <artifactId>zd-common-log</artifactId>
  72. </dependency>
  73. <!-- zd Common Swagger -->
  74. <dependency>
  75. <groupId>com.zd</groupId>
  76. <artifactId>zd-common-swagger</artifactId>
  77. </dependency>
  78. <!--mqtt客户端链接服务-->
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-starter-integration</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework.integration</groupId>
  85. <artifactId>spring-integration-stream</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework.integration</groupId>
  89. <artifactId>spring-integration-mqtt</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.zd</groupId>
  93. <artifactId>zd-common-resultdata</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-starter-websocket</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework.boot</groupId>
  101. <artifactId>spring-boot-starter-freemarker</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.deepoove</groupId>
  105. <artifactId>poi-tl</artifactId>
  106. <version>1.10.2</version>
  107. </dependency>
  108. <!--jsonp解析html-->
  109. <dependency>
  110. <groupId>org.jsoup</groupId>
  111. <artifactId>jsoup</artifactId>
  112. <version>1.8.3</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.springframework.boot</groupId>
  116. <artifactId>spring-boot-starter-test</artifactId>
  117. <scope>test</scope>
  118. <exclusions>
  119. <exclusion>
  120. <groupId>org.junit.vintage</groupId>
  121. <artifactId>junit-vintage-engine</artifactId>
  122. </exclusion>
  123. </exclusions>
  124. </dependency>
  125. </dependencies>
  126. <build>
  127. <finalName>${project.artifactId}</finalName>
  128. <plugins>
  129. <plugin>
  130. <groupId>org.springframework.boot</groupId>
  131. <artifactId>spring-boot-maven-plugin</artifactId>
  132. <executions>
  133. <execution>
  134. <goals>
  135. <goal>repackage</goal>
  136. </goals>
  137. </execution>
  138. </executions>
  139. </plugin>
  140. <!-- 打包时跳过test插件,不运行test测试用例 -->
  141. <plugin>
  142. <groupId>org.apache.maven.plugins</groupId>
  143. <artifactId>maven-surefire-plugin</artifactId>
  144. <version>${maven-surefire-plugin.version}</version>
  145. <configuration>
  146. <skipTests>true</skipTests>
  147. </configuration>
  148. </plugin>
  149. <!-- docker的maven插件 -->
  150. <!-- <plugin>-->
  151. <!-- <groupId>com.spotify</groupId>-->
  152. <!-- <artifactId>dockerfile-maven-plugin</artifactId>-->
  153. <!-- <version>${docker.maven.verion}</version>-->
  154. <!-- <executions>-->
  155. <!-- &lt;!&ndash;执行 mvn package 时 自动构建docker镜像并推送到仓库 &ndash;&gt;-->
  156. <!-- <execution>-->
  157. <!-- <id>default</id>-->
  158. <!-- <phase>package</phase>-->
  159. <!-- <goals>-->
  160. <!-- <goal>build</goal>-->
  161. <!-- <goal>push</goal>-->
  162. <!-- </goals>-->
  163. <!-- </execution>-->
  164. <!-- </executions>-->
  165. <!-- <configuration>-->
  166. <!-- <repository>${docker.registry}/${docker.namespace}/${project.artifactId}</repository>-->
  167. <!-- <tag>latest</tag>-->
  168. <!-- &lt;!&ndash; 镜像服务器账号密码 &ndash;&gt;-->
  169. <!-- <username>admin</username>-->
  170. <!-- <password>zd123456..</password>-->
  171. <!-- &lt;!&ndash; 构建参数,指定jar包名称 &ndash;&gt;-->
  172. <!-- <buildArgs>-->
  173. <!-- <JAR_FILE>${project.artifactId}.jar</JAR_FILE>-->
  174. <!-- </buildArgs>-->
  175. <!-- </configuration>-->
  176. <!-- </plugin>-->
  177. </plugins>
  178. </build>
  179. </project>