pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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. <!-- Mysql Connector -->
  26. <dependency>
  27. <groupId>mysql</groupId>
  28. <artifactId>mysql-connector-java</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.zd.core</groupId>
  32. <artifactId>common-core</artifactId>
  33. </dependency>
  34. <!-- zd Common Swagger -->
  35. <dependency>
  36. <groupId>com.zd.swagger</groupId>
  37. <artifactId>common-swagger</artifactId>
  38. </dependency>
  39. <!--mqtt客户端链接服务-->
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-integration</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.integration</groupId>
  46. <artifactId>spring-integration-stream</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.integration</groupId>
  50. <artifactId>spring-integration-mqtt</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.deepoove</groupId>
  54. <artifactId>poi-tl</artifactId>
  55. <version>1.10.2</version>
  56. </dependency>
  57. <!--jsonp解析html-->
  58. <dependency>
  59. <groupId>org.jsoup</groupId>
  60. <artifactId>jsoup</artifactId>
  61. <version>1.8.3</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.zd.base</groupId>
  65. <artifactId>zd-base-api</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.zd.laboratory</groupId>
  69. <artifactId>zd-laboratory-api</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.zd.chemical</groupId>
  73. <artifactId>zd-chemical-api</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.zd.exam</groupId>
  77. <artifactId>zd-exam-api</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.zd.algorithm</groupId>
  81. <artifactId>zd-algorithm-api</artifactId>
  82. </dependency>
  83. <!-- mybatis plus -->
  84. <dependency>
  85. <groupId>com.baomidou</groupId>
  86. <artifactId>mybatis-plus-boot-starter</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>Acs</groupId>
  90. <artifactId>com.zd.Acs</artifactId>
  91. <version>1.0</version>
  92. <scope>system</scope>
  93. <systemPath>${pom.basedir}/src/main/resources/libs/zd-haikang.jar</systemPath>
  94. </dependency>
  95. <dependency>
  96. <groupId>net.coobird</groupId>
  97. <artifactId>thumbnailator</artifactId>
  98. <version>0.4.8</version>
  99. </dependency>
  100. </dependencies>
  101. <build>
  102. <finalName>${project.artifactId}</finalName>
  103. <plugins>
  104. <plugin>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-maven-plugin</artifactId>
  107. <version>${spring-boot.version}</version>
  108. <configuration>
  109. <includeSystemScope>true</includeSystemScope>
  110. </configuration>
  111. <executions>
  112. <execution>
  113. <goals>
  114. <goal>repackage</goal>
  115. </goals>
  116. </execution>
  117. </executions>
  118. </plugin>
  119. </plugins>
  120. </build>
  121. </project>