pom.xml 9.2 KB

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