pom.xml 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  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. <groupId>com.vber</groupId>
  7. <artifactId>VberAdmin</artifactId>
  8. <version>1.0.0</version>
  9. <packaging>pom</packaging>
  10. <modules>
  11. <module>vber-common</module>
  12. <module>vber-domain-entity</module>
  13. <module>vber-system</module>
  14. <module>vber-framework</module>
  15. <module>vber-quartz</module>
  16. <module>vber-generator</module>
  17. <module>vber-generator-web</module>
  18. <module>vber-web</module>
  19. <module>vber-data-seeder</module>
  20. </modules>
  21. <properties>
  22. <vber.version>1.0.0</vber.version>
  23. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  24. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  25. <java.version>1.8</java.version>
  26. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  27. <thymeleaf.extras.shiro.version>2.1.0</thymeleaf.extras.shiro.version>
  28. <druid.version>1.2.16</druid.version>
  29. <shardingsphere.version>5.3.2</shardingsphere.version>
  30. <shardingsphere.spring.boot.version>5.2.1</shardingsphere.spring.boot.version>
  31. <bitwalker.version>1.21</bitwalker.version>
  32. <swagger.version>3.0.0</swagger.version>
  33. <kaptcha.version>2.3.3</kaptcha.version>
  34. <pagehelper.boot.version>1.4.6</pagehelper.boot.version>
  35. <fastjson.version>2.0.25</fastjson.version>
  36. <oshi.version>6.4.0</oshi.version>
  37. <commons.io.version>2.11.0</commons.io.version>
  38. <commons.collections.version>3.2.2</commons.collections.version>
  39. <poi.version>4.1.2</poi.version>
  40. <velocity.version>2.3</velocity.version>
  41. <jwt.version>0.9.1</jwt.version>
  42. <yaml.version>1.33</yaml.version>
  43. </properties>
  44. <!-- 依赖声明 -->
  45. <dependencyManagement>
  46. <dependencies>
  47. <!-- SpringBoot的依赖配置-->
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-dependencies</artifactId>
  51. <version>2.5.14</version>
  52. <type>pom</type>
  53. <scope>import</scope>
  54. </dependency>
  55. <!-- 阿里数据库连接池 -->
  56. <dependency>
  57. <groupId>com.alibaba</groupId>
  58. <artifactId>druid-spring-boot-starter</artifactId>
  59. <version>${druid.version}</version>
  60. </dependency>
  61. <!-- <dependency>-->
  62. <!-- <groupId>org.apache.shardingsphere</groupId>-->
  63. <!-- <artifactId>sharding-jdbc-core</artifactId>-->
  64. <!-- <version>4.1.1</version>-->
  65. <!-- </dependency>-->
  66. <dependency>
  67. <groupId>org.apache.shardingsphere</groupId>
  68. <artifactId>shardingsphere-jdbc-core</artifactId>
  69. <version>${shardingsphere.version}</version>
  70. </dependency>
  71. <!-- <dependency>-->
  72. <!-- <groupId>org.apache.shardingsphere</groupId>-->
  73. <!-- <artifactId>shardingsphere-jdbc-core-spring-boot-starter</artifactId>-->
  74. <!-- <version>${shardingsphere.spring.boot.version}</version>-->
  75. <!-- </dependency>-->
  76. <!-- thymeleaf模板引擎和shiro框架的整合 -->
  77. <dependency>
  78. <groupId>com.github.theborakompanioni</groupId>
  79. <artifactId>thymeleaf-extras-shiro</artifactId>
  80. <version>${thymeleaf.extras.shiro.version}</version>
  81. </dependency>
  82. <!-- 解析客户端操作系统、浏览器等 -->
  83. <dependency>
  84. <groupId>eu.bitwalker</groupId>
  85. <artifactId>UserAgentUtils</artifactId>
  86. <version>${bitwalker.version}</version>
  87. </dependency>
  88. <!-- pagehelper 分页插件 -->
  89. <dependency>
  90. <groupId>com.github.pagehelper</groupId>
  91. <artifactId>pagehelper-spring-boot-starter</artifactId>
  92. <version>${pagehelper.boot.version}</version>
  93. </dependency>
  94. <!-- 获取系统信息 -->
  95. <dependency>
  96. <groupId>com.github.oshi</groupId>
  97. <artifactId>oshi-core</artifactId>
  98. <version>${oshi.version}</version>
  99. </dependency>
  100. <!-- Swagger3依赖 -->
  101. <dependency>
  102. <groupId>io.springfox</groupId>
  103. <artifactId>springfox-boot-starter</artifactId>
  104. <version>${swagger.version}</version>
  105. <exclusions>
  106. <exclusion>
  107. <groupId>io.swagger</groupId>
  108. <artifactId>swagger-models</artifactId>
  109. </exclusion>
  110. </exclusions>
  111. </dependency>
  112. <!-- io常用工具类 -->
  113. <dependency>
  114. <groupId>commons-io</groupId>
  115. <artifactId>commons-io</artifactId>
  116. <version>${commons.io.version}</version>
  117. </dependency>
  118. <!-- excel工具 -->
  119. <dependency>
  120. <groupId>org.apache.poi</groupId>
  121. <artifactId>poi-ooxml</artifactId>
  122. <version>${poi.version}</version>
  123. </dependency>
  124. <!-- velocity代码生成使用模板 -->
  125. <dependency>
  126. <groupId>org.apache.velocity</groupId>
  127. <artifactId>velocity-engine-core</artifactId>
  128. <version>${velocity.version}</version>
  129. </dependency>
  130. <!-- collections工具类 -->
  131. <dependency>
  132. <groupId>commons-collections</groupId>
  133. <artifactId>commons-collections</artifactId>
  134. <version>${commons.collections.version}</version>
  135. </dependency>
  136. <!-- 阿里JSON解析器 -->
  137. <dependency>
  138. <groupId>com.alibaba.fastjson2</groupId>
  139. <artifactId>fastjson2</artifactId>
  140. <version>${fastjson.version}</version>
  141. </dependency>
  142. <!-- Token生成与解析-->
  143. <dependency>
  144. <groupId>io.jsonwebtoken</groupId>
  145. <artifactId>jjwt</artifactId>
  146. <version>${jwt.version}</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.yaml</groupId>
  150. <artifactId>snakeyaml</artifactId>
  151. <version>${yaml.version}</version>
  152. </dependency>
  153. <!-- 验证码 -->
  154. <dependency>
  155. <groupId>pro.fessional</groupId>
  156. <artifactId>kaptcha</artifactId>
  157. <version>${kaptcha.version}</version>
  158. </dependency>
  159. <!-- 定时任务-->
  160. <dependency>
  161. <groupId>com.vber</groupId>
  162. <artifactId>vber-quartz</artifactId>
  163. <version>${vber.version}</version>
  164. </dependency>
  165. <!-- 代码生成-->
  166. <dependency>
  167. <groupId>com.vber</groupId>
  168. <artifactId>vber-generator</artifactId>
  169. <version>${vber.version}</version>
  170. </dependency>
  171. <!-- 核心模块-->
  172. <dependency>
  173. <groupId>com.vber</groupId>
  174. <artifactId>vber-framework</artifactId>
  175. <version>${vber.version}</version>
  176. </dependency>
  177. <!-- 系统模块-->
  178. <dependency>
  179. <groupId>com.vber</groupId>
  180. <artifactId>vber-system</artifactId>
  181. <version>${vber.version}</version>
  182. </dependency>
  183. <!-- 系统模块-->
  184. <dependency>
  185. <groupId>com.vber</groupId>
  186. <artifactId>vber-domain-entity</artifactId>
  187. <version>${vber.version}</version>
  188. </dependency>
  189. <!-- 通用工具-->
  190. <dependency>
  191. <groupId>com.vber</groupId>
  192. <artifactId>vber-common</artifactId>
  193. <version>${vber.version}</version>
  194. </dependency>
  195. </dependencies>
  196. </dependencyManagement>
  197. <build>
  198. <plugins>
  199. <plugin>
  200. <groupId>org.apache.maven.plugins</groupId>
  201. <artifactId>maven-compiler-plugin</artifactId>
  202. <version>3.1</version>
  203. <configuration>
  204. <source>${java.version}</source>
  205. <target>${java.version}</target>
  206. <encoding>${project.build.sourceEncoding}</encoding>
  207. </configuration>
  208. </plugin>
  209. </plugins>
  210. </build>
  211. <repositories>
  212. <repository>
  213. <id>public</id>
  214. <name>aliyun nexus</name>
  215. <url>https://maven.aliyun.com/repository/public</url>
  216. <releases>
  217. <enabled>true</enabled>
  218. </releases>
  219. </repository>
  220. </repositories>
  221. <pluginRepositories>
  222. <pluginRepository>
  223. <id>public</id>
  224. <name>aliyun nexus</name>
  225. <url>https://maven.aliyun.com/repository/public</url>
  226. <releases>
  227. <enabled>true</enabled>
  228. </releases>
  229. <snapshots>
  230. <enabled>false</enabled>
  231. </snapshots>
  232. </pluginRepository>
  233. </pluginRepositories>
  234. </project>