pom.xml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  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. <parent>
  6. <artifactId>zkqy</artifactId>
  7. <groupId>com.zkqy</groupId>
  8. <version>3.8.5</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>zkqy-admin</artifactId>
  13. <name>zkqy-admin</name>
  14. <description>
  15. web服务入口
  16. </description>
  17. <dependencies>
  18. <!-- spring-boot-devtools -->
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-devtools</artifactId>
  22. <optional>true</optional> <!-- 表示依赖不会传递 -->
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-websocket</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.github.binarywang</groupId>
  30. <artifactId>weixin-java-cp</artifactId>
  31. <version>4.6.0</version>
  32. </dependency>
  33. <!-- swagger3-->
  34. <dependency>
  35. <groupId>io.springfox</groupId>
  36. <artifactId>springfox-boot-starter</artifactId>
  37. </dependency>
  38. <!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 -->
  39. <dependency>
  40. <groupId>io.swagger</groupId>
  41. <artifactId>swagger-models</artifactId>
  42. <version>1.6.2</version>
  43. </dependency>
  44. <!-- Mysql驱动包 -->
  45. <dependency>
  46. <groupId>mysql</groupId>
  47. <artifactId>mysql-connector-java</artifactId>
  48. </dependency>
  49. <!-- 达梦驱动包 -->
  50. <!-- <dependency>-->
  51. <!-- <groupId>com.dm</groupId>-->
  52. <!-- <artifactId>DmJdbcDriver18</artifactId>-->
  53. <!-- <version>1.8</version>-->
  54. <!-- <scope>system</scope>-->
  55. <!-- <systemPath>${project.basedir}/src/main/resources/lib/DmJdbcDriver18.jar</systemPath>-->
  56. <!-- </dependency>-->
  57. <!-- 核心模块-->
  58. <dependency>
  59. <groupId>com.zkqy</groupId>
  60. <artifactId>zkqy-framework</artifactId>
  61. <version>3.8.5</version>
  62. </dependency>
  63. <!--业务模块-->
  64. <dependency>
  65. <groupId>com.zkqy</groupId>
  66. <artifactId>zkqy-business</artifactId>
  67. <version>3.8.5</version>
  68. </dependency>
  69. <!--业务模块-->
  70. <dependency>
  71. <groupId>com.zkqy</groupId>
  72. <artifactId>zkqy-custom-business</artifactId>
  73. <version>3.8.5</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.zkqy</groupId>
  77. <artifactId>zkqy-common</artifactId>
  78. <version>3.8.5</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.zkqy</groupId>
  82. <artifactId>zkqy-laboratory-information</artifactId>
  83. <version>3.8.5</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.zkqy</groupId>
  87. <artifactId>zkqy-fujian-amichi</artifactId>
  88. <version>3.8.5</version>
  89. </dependency>
  90. <!--谷歌的JSON转换工具GSON-->
  91. <dependency>
  92. <groupId>com.google.code.gson</groupId>
  93. <artifactId>gson</artifactId>
  94. <version>2.10.1</version>
  95. <scope>compile</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-starter-actuator</artifactId>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.springframework.boot</groupId>
  103. <artifactId>spring-boot-test</artifactId>
  104. <scope>test</scope>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.junit.jupiter</groupId>
  108. <artifactId>junit-jupiter</artifactId>
  109. <scope>test</scope>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.springframework</groupId>
  113. <artifactId>spring-test</artifactId>
  114. <scope>test</scope>
  115. </dependency>
  116. <dependency>
  117. <groupId>junit</groupId>
  118. <artifactId>junit</artifactId>
  119. </dependency>
  120. </dependencies>
  121. <build>
  122. <plugins>
  123. <plugin>
  124. <groupId>org.springframework.boot</groupId>
  125. <artifactId>spring-boot-maven-plugin</artifactId>
  126. <version>2.1.1.RELEASE</version>
  127. <configuration>
  128. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  129. </configuration>
  130. <executions>
  131. <execution>
  132. <goals>
  133. <goal>repackage</goal>
  134. </goals>
  135. </execution>
  136. </executions>
  137. </plugin>
  138. <plugin>
  139. <groupId>org.apache.maven.plugins</groupId>
  140. <artifactId>maven-compiler-plugin</artifactId>
  141. <version>3.1</version>
  142. <configuration>
  143. <fork>true</fork>
  144. <meminitial>512m</meminitial>
  145. <!-- 设置最大内存 -->
  146. <maxmem>4096m</maxmem>
  147. </configuration>
  148. </plugin>
  149. <plugin>
  150. <groupId>org.apache.maven.plugins</groupId>
  151. <artifactId>maven-war-plugin</artifactId>
  152. <version>3.1.0</version>
  153. <configuration>
  154. <failOnMissingWebXml>false</failOnMissingWebXml>
  155. <warName>${project.artifactId}</warName>
  156. </configuration>
  157. </plugin>
  158. </plugins>
  159. <finalName>${project.artifactId}</finalName>
  160. </build>
  161. </project>