pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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. <packaging>jar</packaging>
  13. <description>实验室管理</description>
  14. <dependencies>
  15. <!-- SpringCloud Alibaba Nacos -->
  16. <dependency>
  17. <groupId>com.alibaba.cloud</groupId>
  18. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  19. </dependency>
  20. <!-- SpringCloud Alibaba Nacos Config -->
  21. <dependency>
  22. <groupId>com.alibaba.cloud</groupId>
  23. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.alibaba.nacos</groupId>
  27. <artifactId>nacos-spring-context</artifactId>
  28. <version>0.2.3-RC1</version>
  29. </dependency>
  30. <!-- SpringCloud Alibaba Sentinel -->
  31. <dependency>
  32. <groupId>com.alibaba.cloud</groupId>
  33. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  34. </dependency>
  35. <!-- SpringBoot Actuator -->
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-actuator</artifactId>
  39. </dependency>
  40. <!-- Swagger UI -->
  41. <!-- <dependency>-->
  42. <!-- <groupId>io.springfox</groupId>-->
  43. <!-- <artifactId>springfox-swagger-ui</artifactId>-->
  44. <!-- <version>${swagger.fox.version}</version>-->
  45. <!-- </dependency>-->
  46. <!-- Mysql Connector -->
  47. <dependency>
  48. <groupId>mysql</groupId>
  49. <artifactId>mysql-connector-java</artifactId>
  50. </dependency>
  51. <!-- zd Common DataSource -->
  52. <dependency>
  53. <groupId>com.zd</groupId>
  54. <artifactId>zd-common-datasource</artifactId>
  55. </dependency>
  56. <!-- zd Common DataScope -->
  57. <dependency>
  58. <groupId>com.zd</groupId>
  59. <artifactId>zd-common-datascope</artifactId>
  60. <exclusions>
  61. <exclusion>
  62. <groupId>org.springframework</groupId>
  63. <artifactId>spring-webmvc</artifactId>
  64. </exclusion>
  65. </exclusions>
  66. </dependency>
  67. <!-- zd Common Log -->
  68. <dependency>
  69. <groupId>com.zd</groupId>
  70. <artifactId>zd-common-log</artifactId>
  71. </dependency>
  72. <!-- zd Common Swagger -->
  73. <dependency>
  74. <groupId>com.zd</groupId>
  75. <artifactId>zd-common-swagger</artifactId>
  76. </dependency>
  77. <!--mqtt客户端链接服务-->
  78. <dependency>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-starter-integration</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.springframework.integration</groupId>
  84. <artifactId>spring-integration-stream</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.springframework.integration</groupId>
  88. <artifactId>spring-integration-mqtt</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.zd</groupId>
  92. <artifactId>zd-common-resultdata</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-starter-websocket</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.springframework.boot</groupId>
  100. <artifactId>spring-boot-starter-freemarker</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.deepoove</groupId>
  104. <artifactId>poi-tl</artifactId>
  105. <version>1.10.2</version>
  106. </dependency>
  107. <!--jsonp解析html-->
  108. <dependency>
  109. <groupId>org.jsoup</groupId>
  110. <artifactId>jsoup</artifactId>
  111. <version>1.8.3</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.springframework.boot</groupId>
  115. <artifactId>spring-boot-starter-test</artifactId>
  116. <scope>test</scope>
  117. <exclusions>
  118. <exclusion>
  119. <groupId>org.junit.vintage</groupId>
  120. <artifactId>junit-vintage-engine</artifactId>
  121. </exclusion>
  122. </exclusions>
  123. </dependency>
  124. </dependencies>
  125. <build>
  126. <finalName>${project.artifactId}</finalName>
  127. <plugins>
  128. <plugin>
  129. <groupId>org.springframework.boot</groupId>
  130. <artifactId>spring-boot-maven-plugin</artifactId>
  131. <executions>
  132. <execution>
  133. <goals>
  134. <goal>repackage</goal>
  135. </goals>
  136. </execution>
  137. </executions>
  138. </plugin>
  139. <!-- 打包时跳过test插件,不运行test测试用例 -->
  140. <plugin>
  141. <groupId>org.apache.maven.plugins</groupId>
  142. <artifactId>maven-surefire-plugin</artifactId>
  143. <version>${maven-surefire-plugin.version}</version>
  144. <configuration>
  145. <skipTests>true</skipTests>
  146. </configuration>
  147. </plugin>
  148. </plugins>
  149. </build>
  150. </project>