pom.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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. </properties>
  17. <build>
  18. <plugins>
  19. <plugin>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-maven-plugin</artifactId>
  22. <!--<version>2.5.12</version>
  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. </plugin>
  34. </plugins>
  35. </build>
  36. <dependencies>
  37. <!-- https://mvnrepository.com/artifact/io.netty/netty-common -->
  38. <dependency>
  39. <groupId>io.netty</groupId>
  40. <artifactId>netty-common</artifactId>
  41. <version>${netty-common.version}</version>
  42. </dependency>
  43. <!-- https://mvnrepository.com/artifact/io.netty/netty-handler -->
  44. <dependency>
  45. <groupId>io.netty</groupId>
  46. <artifactId>netty-handler</artifactId>
  47. <version>${netty-common.version}</version>
  48. <exclusions>
  49. <exclusion>
  50. <artifactId>netty-common</artifactId>
  51. <groupId>io.netty</groupId>
  52. </exclusion>
  53. </exclusions>
  54. </dependency>
  55. <!-- test -->
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-test</artifactId>
  59. <scope>test</scope>
  60. </dependency>
  61. <!-- junit -->
  62. <dependency>
  63. <groupId>junit</groupId>
  64. <artifactId>junit</artifactId>
  65. <version>${junit.version}</version>
  66. <scope>test</scope>
  67. </dependency>
  68. <!-- mysql -->
  69. <dependency>
  70. <groupId>mysql</groupId>
  71. <artifactId>mysql-connector-java</artifactId>
  72. </dependency>
  73. <!-- postgresql -->
  74. <!--<dependency>
  75. <groupId>org.postgresql</groupId>
  76. <artifactId>postgresql</artifactId>
  77. </dependency>-->
  78. <!-- oracle -->
  79. <!--<dependency>
  80. <groupId>com.oracle.database.jdbc</groupId>
  81. <artifactId>ojdbc8</artifactId>
  82. </dependency>-->
  83. <!--<dependency>
  84. <groupId>com.oracle.database.nls</groupId>
  85. <artifactId>orai18n</artifactId>
  86. </dependency>-->
  87. <!-- mssql -->
  88. <!--<dependency>
  89. <groupId>com.microsoft.sqlserver</groupId>
  90. <artifactId>mssql-jdbc</artifactId>
  91. </dependency>-->
  92. <!-- 达梦数据库 -->
  93. <!--<dependency>
  94. <groupId>com.dameng</groupId>
  95. <artifactId>DmJdbcDriver18</artifactId>
  96. </dependency>-->
  97. <!-- 人大金仓数据库 -->
  98. <!--<dependency>
  99. <groupId>cn.com.kingbase</groupId>
  100. <artifactId>kingbase8</artifactId>
  101. </dependency>-->
  102. <!-- 登录鉴权插件 -->
  103. <dependency>
  104. <groupId>com.unis</groupId>
  105. <artifactId>unis-plugin-auth</artifactId>
  106. <exclusions>
  107. <exclusion>
  108. <artifactId>netty-handler</artifactId>
  109. <groupId>io.netty</groupId>
  110. </exclusion>
  111. <exclusion>
  112. <artifactId>netty-common</artifactId>
  113. <groupId>io.netty</groupId>
  114. </exclusion>
  115. </exclusions>
  116. </dependency>
  117. <!-- 业务功能插件 -->
  118. <dependency>
  119. <groupId>com.unis</groupId>
  120. <artifactId>unis-plugin-biz</artifactId>
  121. </dependency>
  122. <!-- C端功能插件 -->
  123. <dependency>
  124. <groupId>com.unis</groupId>
  125. <artifactId>unis-plugin-client</artifactId>
  126. </dependency>
  127. <!-- 开发工具插件 -->
  128. <dependency>
  129. <groupId>com.unis</groupId>
  130. <artifactId>unis-plugin-dev</artifactId>
  131. </dependency>
  132. <!-- 代码生成插件 -->
  133. <dependency>
  134. <groupId>com.unis</groupId>
  135. <artifactId>unis-plugin-gen</artifactId>
  136. </dependency>
  137. <!-- 移动端管理插件 -->
  138. <dependency>
  139. <groupId>com.unis</groupId>
  140. <artifactId>unis-plugin-mobile</artifactId>
  141. </dependency>
  142. <!-- 系统功能插件 -->
  143. <dependency>
  144. <groupId>com.unis</groupId>
  145. <artifactId>unis-plugin-sys</artifactId>
  146. </dependency>
  147. <dependency>
  148. <groupId>commons-codec</groupId>
  149. <artifactId>commons-codec</artifactId>
  150. </dependency>
  151. </dependencies>
  152. </project>