56 lines
2.1 KiB
XML
56 lines
2.1 KiB
XML
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.sample</groupId>
|
|
<artifactId>trend-grid-strategy</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
<name>trend-grid-strategy</name>
|
|
<description>趋势网格策略</description>
|
|
|
|
<properties>
|
|
<trade.version>5.0.0-SNAPSHOT</trade.version>
|
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>vip.uuquant</groupId>
|
|
<artifactId>uuquant-java-runner</artifactId>
|
|
<version>20260329.1811</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>vip.uuquant</groupId>
|
|
<artifactId>uuquant-exchange-api</artifactId>
|
|
<version>20260327.1656</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>3.4.1</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
<transformers>
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
|
<mainClass>com.sample.trend.StrategyApplication</mainClass>
|
|
</transformer>
|
|
</transformers>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|