2018-09-12 20:16:11 +08:00
|
|
|
<?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>org.datagear</groupId>
|
|
|
|
<artifactId>datagear</artifactId>
|
2021-08-10 19:05:49 +08:00
|
|
|
<version>2.8.0</version>
|
2018-09-12 20:16:11 +08:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<name>datagear</name>
|
2019-05-17 19:49:56 +08:00
|
|
|
<url>http://www.datagear.tech</url>
|
2018-09-12 20:16:11 +08:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2020-10-31 00:19:11 +08:00
|
|
|
<java.version>1.8</java.version>
|
2021-05-31 18:20:37 +08:00
|
|
|
<springboot.version>2.4.6</springboot.version>
|
2019-10-25 21:28:37 +08:00
|
|
|
<javax.json.version>1.0.4</javax.json.version>
|
2020-08-27 18:29:20 +08:00
|
|
|
<commons-csv.version>1.4</commons-csv.version>
|
|
|
|
<poi.version>3.17</poi.version>
|
|
|
|
<poi-ooxml.version>3.17</poi-ooxml.version>
|
2020-11-04 20:26:07 +08:00
|
|
|
<httpclient.version>5.0.1</httpclient.version>
|
|
|
|
<mybatis.version>3.3.1</mybatis.version>
|
|
|
|
<mybatis-spring.version>1.3.1</mybatis-spring.version>
|
2020-11-18 12:50:57 +08:00
|
|
|
<commons-fileupload.version>1.4</commons-fileupload.version>
|
2020-01-30 17:59:55 +08:00
|
|
|
<maven-antrun-plugin.version>1.4</maven-antrun-plugin.version>
|
2018-09-12 20:16:11 +08:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<modules>
|
2020-03-16 14:42:24 +08:00
|
|
|
<module>datagear-meta</module>
|
2018-09-12 20:16:11 +08:00
|
|
|
<module>datagear-connection</module>
|
2020-03-16 14:42:24 +08:00
|
|
|
<module>datagear-persistence</module>
|
2019-05-17 19:49:56 +08:00
|
|
|
<module>datagear-dataexchange</module>
|
2018-09-12 20:16:11 +08:00
|
|
|
<module>datagear-management</module>
|
2019-07-11 10:31:40 +08:00
|
|
|
<module>datagear-util</module>
|
2019-12-02 21:30:50 +08:00
|
|
|
<module>datagear-analysis</module>
|
2020-01-30 17:59:55 +08:00
|
|
|
<module>datagear-web</module>
|
2020-03-15 20:34:46 +08:00
|
|
|
</modules>
|
2020-01-30 17:59:55 +08:00
|
|
|
|
2018-09-12 20:16:11 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
2020-03-12 23:30:33 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-03-14 12:12:43 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest-library</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-09-12 20:16:11 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-05-28 12:33:29 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-09-12 20:16:11 +08:00
|
|
|
</dependencies>
|
2020-10-29 21:23:15 +08:00
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
<version>${springboot.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
2018-09-12 20:16:11 +08:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
2020-10-31 00:19:11 +08:00
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
2018-09-12 20:16:11 +08:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2021-02-09 22:47:17 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifestEntries>
|
|
|
|
<Built-By>datagear.tech</Built-By>
|
|
|
|
</manifestEntries>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2018-09-20 10:06:46 +08:00
|
|
|
<!-- 统一更新子模块版本号为父模块版本号插件 -->
|
|
|
|
<!-- mvn -N versions:update-child-modules -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>versions-maven-plugin</artifactId>
|
|
|
|
<version>2.3</version>
|
|
|
|
<configuration>
|
|
|
|
<generateBackupPoms>false</generateBackupPoms>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2018-10-23 11:11:17 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
2020-10-31 00:19:11 +08:00
|
|
|
<version>${maven-antrun-plugin.version}</version>
|
2018-10-23 11:11:17 +08:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>default-cli</id>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<tasks>
|
2020-01-30 22:30:21 +08:00
|
|
|
<!-- 替换util模块Global.PRODUCT_VERSION版本号 -->
|
|
|
|
<replaceregexp file="datagear-util/src/main/java/org/datagear/util/Global.java" encoding="UTF-8" match="VERSION = "\d+(\.\d+){1,2}(\-\w+){0,1}"" replace="VERSION = "${project.version}""/>
|
|
|
|
|
2018-10-23 11:11:17 +08:00
|
|
|
<!-- 为management模块的datagear.sql添加版本号行 -->
|
|
|
|
<echo file="datagear-management/src/main/resources/org/datagear/management/ddl/datagear.sql" encoding="UTF-8" append="true">
|
|
|
|
${line.separator}
|
|
|
|
-----------------------------------------
|
|
|
|
--version[${project.version}], DO NOT EDIT THIS LINE!
|
|
|
|
-----------------------------------------
|
|
|
|
${line.separator}
|
|
|
|
</echo>
|
|
|
|
<!-- 为web模块的changelog.txt添加版本号行 -->
|
2020-10-31 00:19:11 +08:00
|
|
|
<echo file="datagear-web/src/main/resources/org/datagear/web/changelog.txt" encoding="UTF-8" append="true">
|
2018-10-23 11:11:17 +08:00
|
|
|
${line.separator}
|
|
|
|
-----------------------------------------
|
|
|
|
--v${project.version}
|
|
|
|
-----------------------------------------
|
|
|
|
${line.separator}
|
|
|
|
</echo>
|
|
|
|
</tasks>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2018-09-12 20:16:11 +08:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|