2019-12-02 21:30:50 +08:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<project
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.datagear</groupId>
|
|
|
|
<artifactId>datagear</artifactId>
|
2020-03-10 18:59:01 +08:00
|
|
|
<version>1.7.0</version>
|
2019-12-02 21:30:50 +08:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>datagear-analysis</artifactId>
|
|
|
|
<name>datagear-analysis</name>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.datagear</groupId>
|
|
|
|
<artifactId>datagear-util</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2019-12-05 19:44:39 +08:00
|
|
|
<dependency>
|
2019-12-06 20:27:41 +08:00
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
2020-01-18 16:18:26 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-beans</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
2019-12-06 20:27:41 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
<version>${fastjson.version}</version>
|
2019-12-05 19:44:39 +08:00
|
|
|
</dependency>
|
2019-12-02 21:30:50 +08:00
|
|
|
</dependencies>
|
2020-01-30 17:59:55 +08:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<version>${maven-antrun-plugin.version}</version>
|
|
|
|
<executions>
|
|
|
|
<!-- 拷贝LICENSE文件 -->
|
|
|
|
<execution>
|
|
|
|
<id>copyLICENSE</id>
|
|
|
|
<phase>prepare-package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<tasks>
|
|
|
|
<copy file="../LICENSE" todir="${project.build.outputDirectory}" />
|
|
|
|
</tasks>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2019-12-02 21:30:50 +08:00
|
|
|
</project>
|