pom.xml 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  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. <!-- https://mvnrepository.com/artifact/io.netty/netty-common -->
  73. <dependency>
  74. <groupId>io.netty</groupId>
  75. <artifactId>netty-common</artifactId>
  76. <version>${netty-common.version}</version>
  77. </dependency>
  78. <!-- https://mvnrepository.com/artifact/io.netty/netty-handler -->
  79. <dependency>
  80. <groupId>io.netty</groupId>
  81. <artifactId>netty-handler</artifactId>
  82. <version>${netty-common.version}</version>
  83. <exclusions>
  84. <exclusion>
  85. <artifactId>netty-common</artifactId>
  86. <groupId>io.netty</groupId>
  87. </exclusion>
  88. </exclusions>
  89. </dependency>
  90. <!-- test -->
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter-test</artifactId>
  94. <scope>test</scope>
  95. </dependency>
  96. <!-- junit -->
  97. <dependency>
  98. <groupId>junit</groupId>
  99. <artifactId>junit</artifactId>
  100. <version>${junit.version}</version>
  101. <scope>test</scope>
  102. </dependency>
  103. <!-- mysql -->
  104. <dependency>
  105. <groupId>mysql</groupId>
  106. <artifactId>mysql-connector-java</artifactId>
  107. </dependency>
  108. <!-- postgresql -->
  109. <!--<dependency>
  110. <groupId>org.postgresql</groupId>
  111. <artifactId>postgresql</artifactId>
  112. </dependency>-->
  113. <!-- oracle -->
  114. <!--<dependency>
  115. <groupId>com.oracle.database.jdbc</groupId>
  116. <artifactId>ojdbc8</artifactId>
  117. </dependency>-->
  118. <!--<dependency>
  119. <groupId>com.oracle.database.nls</groupId>
  120. <artifactId>orai18n</artifactId>
  121. </dependency>-->
  122. <!-- mssql -->
  123. <!--<dependency>
  124. <groupId>com.microsoft.sqlserver</groupId>
  125. <artifactId>mssql-jdbc</artifactId>
  126. </dependency>-->
  127. <!-- 达梦数据库 -->
  128. <!--<dependency>
  129. <groupId>com.dameng</groupId>
  130. <artifactId>DmJdbcDriver18</artifactId>
  131. </dependency>-->
  132. <!-- 人大金仓数据库 -->
  133. <!--<dependency>
  134. <groupId>cn.com.kingbase</groupId>
  135. <artifactId>kingbase8</artifactId>
  136. </dependency>-->
  137. <!-- 登录鉴权插件 -->
  138. <dependency>
  139. <groupId>com.unis</groupId>
  140. <artifactId>unis-plugin-auth</artifactId>
  141. <exclusions>
  142. <exclusion>
  143. <artifactId>netty-handler</artifactId>
  144. <groupId>io.netty</groupId>
  145. </exclusion>
  146. <exclusion>
  147. <artifactId>netty-common</artifactId>
  148. <groupId>io.netty</groupId>
  149. </exclusion>
  150. </exclusions>
  151. </dependency>
  152. <!-- 业务功能插件 -->
  153. <dependency>
  154. <groupId>com.unis</groupId>
  155. <artifactId>unis-plugin-biz</artifactId>
  156. </dependency>
  157. <!-- C端功能插件 -->
  158. <dependency>
  159. <groupId>com.unis</groupId>
  160. <artifactId>unis-plugin-client</artifactId>
  161. </dependency>
  162. <!-- 开发工具插件 -->
  163. <dependency>
  164. <groupId>com.unis</groupId>
  165. <artifactId>unis-plugin-dev</artifactId>
  166. </dependency>
  167. <!-- 代码生成插件 -->
  168. <dependency>
  169. <groupId>com.unis</groupId>
  170. <artifactId>unis-plugin-gen</artifactId>
  171. </dependency>
  172. <!-- 移动端管理插件 -->
  173. <dependency>
  174. <groupId>com.unis</groupId>
  175. <artifactId>unis-plugin-mobile</artifactId>
  176. </dependency>
  177. <!-- 系统功能插件 -->
  178. <dependency>
  179. <groupId>com.unis</groupId>
  180. <artifactId>unis-plugin-sys</artifactId>
  181. </dependency>
  182. <dependency>
  183. <groupId>commons-codec</groupId>
  184. <artifactId>commons-codec</artifactId>
  185. </dependency>
  186. </dependencies>
  187. </project>