pom.xml 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.unis</groupId>
  8. <artifactId>unis</artifactId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <artifactId>unis-web-app</artifactId>
  12. <packaging>jar</packaging>
  13. <description>主启动模块</description>
  14. <properties>
  15. <netty-common.version>4.1.92.Final</netty-common.version>
  16. <dependency-check-maven.version>9.2.0</dependency-check-maven.version>
  17. </properties>
  18. <build>
  19. <plugins>
  20. <plugin>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-maven-plugin</artifactId>
  23. <configuration>
  24. <includeSystemScope>true</includeSystemScope>
  25. </configuration>
  26. <executions>
  27. <execution>
  28. <goals>
  29. <goal>repackage</goal>
  30. </goals>
  31. </execution>
  32. </executions>
  33. <!--<version>2.5.12</version>
  34. <configuration>
  35. <includeSystemScope>true</includeSystemScope>
  36. </configuration>
  37. <executions>
  38. <execution>
  39. <goals>
  40. <goal>repackage</goal>
  41. </goals>
  42. </execution>
  43. </executions>-->
  44. </plugin>
  45. <!--代码依赖包安全漏洞检测-->
  46. <plugin>
  47. <groupId>org.owasp</groupId>
  48. <artifactId>dependency-check-maven</artifactId>
  49. <version>${dependency-check-maven.version}</version>
  50. <configuration>
  51. <autoUpdate>true</autoUpdate>
  52. </configuration>
  53. <executions>
  54. <execution>
  55. <goals>
  56. <goal>check</goal>
  57. </goals>
  58. <phase>site</phase>
  59. </execution>
  60. </executions>
  61. </plugin>
  62. </plugins>
  63. </build>
  64. <dependencies>
  65. <!--漏洞扫描-->
  66. <!-- https://mvnrepository.com/artifact/org.owasp/dependency-check-maven -->
  67. <dependency>
  68. <groupId>org.owasp</groupId>
  69. <artifactId>dependency-check-maven</artifactId>
  70. <version>${dependency-check-maven.version}</version>
  71. </dependency>
  72. <!--htmlunit爬虫-->
  73. <dependency>
  74. <groupId>org.htmlunit</groupId>
  75. <artifactId>htmlunit</artifactId>
  76. <version>4.3.0</version>
  77. </dependency>
  78. <!-- https://mvnrepository.com/artifact/io.netty/netty-common -->
  79. <dependency>
  80. <groupId>io.netty</groupId>
  81. <artifactId>netty-common</artifactId>
  82. <version>${netty-common.version}</version>
  83. </dependency>
  84. <!-- https://mvnrepository.com/artifact/io.netty/netty-handler -->
  85. <dependency>
  86. <groupId>io.netty</groupId>
  87. <artifactId>netty-handler</artifactId>
  88. <version>${netty-common.version}</version>
  89. <exclusions>
  90. <exclusion>
  91. <artifactId>netty-common</artifactId>
  92. <groupId>io.netty</groupId>
  93. </exclusion>
  94. </exclusions>
  95. </dependency>
  96. <!-- test -->
  97. <dependency>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-starter-test</artifactId>
  100. <scope>test</scope>
  101. </dependency>
  102. <!-- junit -->
  103. <dependency>
  104. <groupId>junit</groupId>
  105. <artifactId>junit</artifactId>
  106. <version>${junit.version}</version>
  107. <scope>test</scope>
  108. </dependency>
  109. <!-- mysql -->
  110. <dependency>
  111. <groupId>mysql</groupId>
  112. <artifactId>mysql-connector-java</artifactId>
  113. </dependency>
  114. <!-- postgresql -->
  115. <!--<dependency>
  116. <groupId>org.postgresql</groupId>
  117. <artifactId>postgresql</artifactId>
  118. </dependency>-->
  119. <!-- oracle -->
  120. <!--<dependency>
  121. <groupId>com.oracle.database.jdbc</groupId>
  122. <artifactId>ojdbc8</artifactId>
  123. </dependency>-->
  124. <!--<dependency>
  125. <groupId>com.oracle.database.nls</groupId>
  126. <artifactId>orai18n</artifactId>
  127. </dependency>-->
  128. <!-- mssql -->
  129. <!--<dependency>
  130. <groupId>com.microsoft.sqlserver</groupId>
  131. <artifactId>mssql-jdbc</artifactId>
  132. </dependency>-->
  133. <!-- 达梦数据库 -->
  134. <!--<dependency>
  135. <groupId>com.dameng</groupId>
  136. <artifactId>DmJdbcDriver18</artifactId>
  137. </dependency>-->
  138. <!-- 人大金仓数据库 -->
  139. <!--<dependency>
  140. <groupId>cn.com.kingbase</groupId>
  141. <artifactId>kingbase8</artifactId>
  142. </dependency>-->
  143. <!-- 登录鉴权插件 -->
  144. <dependency>
  145. <groupId>com.unis</groupId>
  146. <artifactId>unis-plugin-auth</artifactId>
  147. <exclusions>
  148. <exclusion>
  149. <artifactId>netty-handler</artifactId>
  150. <groupId>io.netty</groupId>
  151. </exclusion>
  152. <exclusion>
  153. <artifactId>netty-common</artifactId>
  154. <groupId>io.netty</groupId>
  155. </exclusion>
  156. </exclusions>
  157. </dependency>
  158. <!-- 业务功能插件 -->
  159. <dependency>
  160. <groupId>com.unis</groupId>
  161. <artifactId>unis-plugin-biz</artifactId>
  162. </dependency>
  163. <!-- C端功能插件 -->
  164. <dependency>
  165. <groupId>com.unis</groupId>
  166. <artifactId>unis-plugin-client</artifactId>
  167. </dependency>
  168. <!-- 开发工具插件 -->
  169. <dependency>
  170. <groupId>com.unis</groupId>
  171. <artifactId>unis-plugin-dev</artifactId>
  172. </dependency>
  173. <!-- 代码生成插件 -->
  174. <dependency>
  175. <groupId>com.unis</groupId>
  176. <artifactId>unis-plugin-gen</artifactId>
  177. </dependency>
  178. <!-- 移动端管理插件 -->
  179. <dependency>
  180. <groupId>com.unis</groupId>
  181. <artifactId>unis-plugin-mobile</artifactId>
  182. </dependency>
  183. <!-- 系统功能插件 -->
  184. <dependency>
  185. <groupId>com.unis</groupId>
  186. <artifactId>unis-plugin-sys</artifactId>
  187. </dependency>
  188. <dependency>
  189. <groupId>commons-codec</groupId>
  190. <artifactId>commons-codec</artifactId>
  191. </dependency>
  192. </dependencies>
  193. </project>