1
0

pom.xml 6.7 KB

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