pom.xml 9.1 KB

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