123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.simuwang</groupId>
- <artifactId>data-daq</artifactId>
- <version>1.0.0</version>
- <description>私募排排网-数据采集系统</description>
- <packaging>pom</packaging>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <maven.compiler.source>17</maven.compiler.source>
- <maven.compiler.target>17</maven.compiler.target>
- <pagehelper.boot.version>1.4.7</pagehelper.boot.version>
- <data-calc.version>0.1.8-SNAPSHOT</data-calc.version>
- <joda-time.version>2.12.7</joda-time.version>
- <commons-math3.version>3.6.1</commons-math3.version>
- <hutool.version>5.8.31</hutool.version>
- <mybatis-plus.version>3.5.7</mybatis-plus.version>
- <dameng.version>8.1.3.62</dameng.version>
- <daq.version>1.0.0</daq.version>
- </properties>
- <modules>
- <module>service-deploy</module>
- <module>service-base</module>
- <module>service-calc</module>
- <module>service-manage</module>
- <module>service-daq</module>
- </modules>
- <dependencyManagement>
- <dependencies>
- <!-- SpringBoot的依赖配置-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-dependencies</artifactId>
- <version>3.3.3</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <!-- <!– pagehelper 分页插件 –>-->
- <!-- <dependency>-->
- <!-- <groupId>com.github.pagehelper</groupId>-->
- <!-- <artifactId>pagehelper-spring-boot-starter</artifactId>-->
- <!-- <version>${pagehelper.boot.version}</version>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- <version>${mybatis-plus.version}</version>
- </dependency>
- <!-- 达梦数据库 -->
- <dependency>
- <groupId>com.dameng</groupId>
- <artifactId>DmJdbcDriver18</artifactId>
- <version>${dameng.version}</version>
- </dependency>
- <!-- 私有库 -->
- <dependency>
- <groupId>com.smppw</groupId>
- <artifactId>data-calc</artifactId>
- <version>${data-calc.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-math3</artifactId>
- <version>${commons-math3.version}</version>
- </dependency>
- <dependency>
- <groupId>joda-time</groupId>
- <artifactId>joda-time</artifactId>
- <version>${joda-time.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-core</artifactId>
- <version>${hutool.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-json</artifactId>
- <version>${hutool.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-http</artifactId>
- <version>${hutool.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-crypto</artifactId>
- <version>${hutool.version}</version>
- </dependency>
- <!-- 内部模块 -->
- <dependency>
- <groupId>com.simuwang</groupId>
- <artifactId>service-base</artifactId>
- <version>${daq.version}</version>
- </dependency>
- <dependency>
- <groupId>com.simuwang</groupId>
- <artifactId>service-calc</artifactId>
- <version>${daq.version}</version>
- </dependency>
- <dependency>
- <groupId>com.simuwang</groupId>
- <artifactId>service-manage</artifactId>
- <version>${daq.version}</version>
- </dependency>
- <dependency>
- <groupId>com.simuwang</groupId>
- <artifactId>service-daq</artifactId>
- <version>${daq.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.1</version>
- <configuration>
- <source>${java.version}</source>
- <target>${java.version}</target>
- <encoding>${project.build.sourceEncoding}</encoding>
- <compilerArgs>
- <arg>-parameters</arg>
- </compilerArgs>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <repositories>
- <repository>
- <id>public</id>
- <name>aliyun nexus</name>
- <url>https://maven.aliyun.com/repository/public</url>
- <releases>
- <enabled>true</enabled>
- </releases>
- </repository>
- <repository>
- <id>smppw-release</id>
- <url>http://120.24.213.180:8081/nexus/content/repositories/releases/</url>
- </repository>
- <repository>
- <id>smppw-snapshots</id>
- <url>http://120.24.213.180:8081/nexus/content/repositories/snapshots/</url>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- </repository>
- </repositories>
- <pluginRepositories>
- <pluginRepository>
- <id>public</id>
- <name>aliyun nexus</name>
- <url>https://maven.aliyun.com/repository/public</url>
- <releases>
- <enabled>true</enabled>
- </releases>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </pluginRepository>
- </pluginRepositories>
- </project>
|