pom.xml 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  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.simuwang</groupId>
  7. <artifactId>data-daq</artifactId>
  8. <version>1.0.0</version>
  9. <description>私募排排网-数据采集系统</description>
  10. <packaging>pom</packaging>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. <maven.compiler.source>17</maven.compiler.source>
  15. <maven.compiler.target>17</maven.compiler.target>
  16. <pagehelper.boot.version>2.0.0</pagehelper.boot.version>
  17. <data-calc.version>0.1.8-SNAPSHOT</data-calc.version>
  18. <joda-time.version>2.12.7</joda-time.version>
  19. <commons-math3.version>3.6.1</commons-math3.version>
  20. <hutool.version>5.8.31</hutool.version>
  21. <mybatis-plus-boot3.version>3.5.7</mybatis-plus-boot3.version>
  22. <dameng.version>8.1.3.62</dameng.version>
  23. <daq.version>1.0.0</daq.version>
  24. <apache-shiro.version>2.0.1</apache-shiro.version>
  25. <java-jwt.version>4.4.0</java-jwt.version>
  26. <jjwt.version>0.12.6</jjwt.version>
  27. <apahce-pdfbox.version>3.0.3</apahce-pdfbox.version>
  28. <tabula.version>1.0.5</tabula.version>
  29. </properties>
  30. <modules>
  31. <module>service-deploy</module>
  32. <module>service-base</module>
  33. <module>service-calc</module>
  34. <module>service-manage</module>
  35. <module>service-daq</module>
  36. </modules>
  37. <dependencyManagement>
  38. <dependencies>
  39. <!-- SpringBoot的依赖配置-->
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-dependencies</artifactId>
  43. <version>3.3.3</version>
  44. <type>pom</type>
  45. <scope>import</scope>
  46. </dependency>
  47. <!-- pagehelper 分页插件 -->
  48. <dependency>
  49. <groupId>com.github.pagehelper</groupId>
  50. <artifactId>pagehelper-spring-boot-starter</artifactId>
  51. <version>${pagehelper.boot.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.baomidou</groupId>
  55. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  56. <version>${mybatis-plus-boot3.version}</version>
  57. </dependency>
  58. <!-- 达梦数据库 -->
  59. <dependency>
  60. <groupId>com.dameng</groupId>
  61. <artifactId>DmJdbcDriver18</artifactId>
  62. <version>${dameng.version}</version>
  63. </dependency>
  64. <!-- shiro Jakarta兼容 -->
  65. <dependency>
  66. <groupId>org.apache.shiro</groupId>
  67. <artifactId>shiro-core</artifactId>
  68. <classifier>jakarta</classifier>
  69. <version>${apache-shiro.version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.shiro</groupId>
  73. <artifactId>shiro-web</artifactId>
  74. <classifier>jakarta</classifier>
  75. <version>${apache-shiro.version}</version>
  76. <exclusions>
  77. <exclusion>
  78. <groupId>org.apache.shiro</groupId>
  79. <artifactId>shiro-core</artifactId>
  80. </exclusion>
  81. </exclusions>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.apache.shiro</groupId>
  85. <artifactId>shiro-spring</artifactId>
  86. <classifier>jakarta</classifier>
  87. <version>${apache-shiro.version}</version>
  88. <exclusions>
  89. <exclusion>
  90. <groupId>org.apache.shiro</groupId>
  91. <artifactId>shiro-core</artifactId>
  92. </exclusion>
  93. <exclusion>
  94. <groupId>org.apache.shiro</groupId>
  95. <artifactId>shiro-web</artifactId>
  96. </exclusion>
  97. </exclusions>
  98. </dependency>
  99. <!-- 私有库 -->
  100. <dependency>
  101. <groupId>com.smppw</groupId>
  102. <artifactId>data-calc</artifactId>
  103. <version>${data-calc.version}</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.apache.commons</groupId>
  107. <artifactId>commons-math3</artifactId>
  108. <version>${commons-math3.version}</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>joda-time</groupId>
  112. <artifactId>joda-time</artifactId>
  113. <version>${joda-time.version}</version>
  114. </dependency>
  115. <!-- hutool 工具,按需引入 -->
  116. <dependency>
  117. <groupId>cn.hutool</groupId>
  118. <artifactId>hutool-core</artifactId>
  119. <version>${hutool.version}</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>cn.hutool</groupId>
  123. <artifactId>hutool-json</artifactId>
  124. <version>${hutool.version}</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>cn.hutool</groupId>
  128. <artifactId>hutool-http</artifactId>
  129. <version>${hutool.version}</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>cn.hutool</groupId>
  133. <artifactId>hutool-crypto</artifactId>
  134. <version>${hutool.version}</version>
  135. </dependency>
  136. <!-- jjwt依赖包 -->
  137. <dependency>
  138. <groupId>com.auth0</groupId>
  139. <artifactId>java-jwt</artifactId>
  140. <version>${java-jwt.version}</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>io.jsonwebtoken</groupId>
  144. <artifactId>jjwt</artifactId>
  145. <version>${jjwt.version}</version>
  146. </dependency>
  147. <!-- pdf解析 -->
  148. <dependency>
  149. <groupId>org.apache.pdfbox</groupId>
  150. <artifactId>pdfbox</artifactId>
  151. <version>${apahce-pdfbox.version}</version>
  152. <exclusions>
  153. <exclusion>
  154. <groupId>org.slf4j</groupId>
  155. <artifactId>slf4j-simple</artifactId>
  156. </exclusion>
  157. </exclusions>
  158. </dependency>
  159. <dependency>
  160. <groupId>technology.tabula</groupId>
  161. <artifactId>tabula</artifactId>
  162. <version>${tabula.version}</version>
  163. <exclusions>
  164. <exclusion>
  165. <groupId>org.apache.pdfbox</groupId>
  166. <artifactId>pdfbox</artifactId>
  167. </exclusion>
  168. <exclusion>
  169. <groupId>org.apache.pdfbox</groupId>
  170. <artifactId>pdfbox-io</artifactId>
  171. </exclusion>
  172. <exclusion>
  173. <groupId>org.slf4j</groupId>
  174. <artifactId>slf4j-simple</artifactId>
  175. </exclusion>
  176. </exclusions>
  177. </dependency>
  178. <!-- 内部模块 -->
  179. <dependency>
  180. <groupId>com.simuwang</groupId>
  181. <artifactId>service-base</artifactId>
  182. <version>${daq.version}</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>com.simuwang</groupId>
  186. <artifactId>service-calc</artifactId>
  187. <version>${daq.version}</version>
  188. </dependency>
  189. <dependency>
  190. <groupId>com.simuwang</groupId>
  191. <artifactId>service-manage</artifactId>
  192. <version>${daq.version}</version>
  193. </dependency>
  194. <dependency>
  195. <groupId>com.simuwang</groupId>
  196. <artifactId>service-daq</artifactId>
  197. <version>${daq.version}</version>
  198. </dependency>
  199. </dependencies>
  200. </dependencyManagement>
  201. <repositories>
  202. <repository>
  203. <id>public</id>
  204. <name>aliyun nexus</name>
  205. <url>https://maven.aliyun.com/repository/public</url>
  206. <releases>
  207. <enabled>true</enabled>
  208. </releases>
  209. </repository>
  210. <repository>
  211. <id>smppw-release</id>
  212. <url>http://120.24.213.180:8081/nexus/content/repositories/releases/</url>
  213. </repository>
  214. <repository>
  215. <id>smppw-snapshots</id>
  216. <url>http://120.24.213.180:8081/nexus/content/repositories/snapshots/</url>
  217. <snapshots>
  218. <enabled>true</enabled>
  219. </snapshots>
  220. </repository>
  221. </repositories>
  222. <pluginRepositories>
  223. <pluginRepository>
  224. <id>public</id>
  225. <name>aliyun nexus</name>
  226. <url>https://maven.aliyun.com/repository/public</url>
  227. <releases>
  228. <enabled>true</enabled>
  229. </releases>
  230. <snapshots>
  231. <enabled>false</enabled>
  232. </snapshots>
  233. </pluginRepository>
  234. </pluginRepositories>
  235. </project>