pom.xml 10 KB

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