pom.xml 8.6 KB

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