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>
|
2019-11-17 13:49:53 +08:00
|
|
|
<version>1.5.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>
|
|
|
|
<maven.compile.source>1.6</maven.compile.source>
|
|
|
|
<maven.compile.target>1.6</maven.compile.target>
|
|
|
|
<junit.version>4.11</junit.version>
|
|
|
|
<spring.version>3.2.3.RELEASE</spring.version>
|
|
|
|
<slf4j.version>1.7.9</slf4j.version>
|
|
|
|
<slf4j-log4j12.version>1.7.9</slf4j-log4j12.version>
|
|
|
|
<log4j.version>1.2.17</log4j.version>
|
2019-10-25 21:28:37 +08:00
|
|
|
<javax.json.version>1.0.4</javax.json.version>
|
2019-12-05 19:44:39 +08:00
|
|
|
<guava.version>19.0</guava.version>
|
2019-12-06 20:27:41 +08:00
|
|
|
<fastjson.version>1.2.35</fastjson.version>
|
2019-12-12 21:50:48 +08:00
|
|
|
<freemarker.version>2.3.28</freemarker.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>
|
|
|
|
<module>datagear-model</module>
|
|
|
|
<module>datagear-connection</module>
|
|
|
|
<module>datagear-dbinfo</module>
|
|
|
|
<module>datagear-persistence</module>
|
|
|
|
<module>datagear-dbmodel</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>
|
|
|
|
<module>datagear-webapp</module>
|
|
|
|
<module>datagear-webappembd</module>
|
2018-09-12 20:16:11 +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>
|
|
|
|
<version>${slf4j.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>${junit.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-05-28 12:33:29 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
<version>5.1.24</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-09-12 20:16:11 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>2.3.2</version>
|
|
|
|
<configuration>
|
|
|
|
<source>${maven.compile.source}</source>
|
|
|
|
<target>${maven.compile.target}</target>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>compile-tests</id>
|
|
|
|
<phase>process-test-sources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>testCompile</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<source>${maven.compile.source}</source>
|
|
|
|
<target>${maven.compile.target}</target>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</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>
|
|
|
|
<version>1.4</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>default-cli</id>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<tasks>
|
|
|
|
<!-- 为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>
|
2019-06-18 14:16:43 +08:00
|
|
|
<!-- 替换web模块datagear-version.properties中的版本号 -->
|
2020-01-14 19:39:28 +08:00
|
|
|
<replaceregexp file="datagear-web/src/main/resources/org/datagear/web/datagear-version.properties" encoding="UTF-8" match="version=\d+(\.\d+){1,2}(\-\w+){0,1}" replace="version=${project.version}"/>
|
2018-10-23 11:11:17 +08:00
|
|
|
|
|
|
|
<!-- 为web模块的changelog.txt添加版本号行 -->
|
2020-01-14 19:39:28 +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>
|
2020-01-30 17:59:55 +08:00
|
|
|
<!-- 替换web模块readme.txt中的版本号 -->
|
|
|
|
<replaceregexp file="datagear-webapp/src/main/webapp/readme.txt" encoding="UTF-8" match="数据齿轮\-v\d+(\.\d+){1,2}(\-\w+){0,1}" replace="数据齿轮-v${project.version}"/>
|
2018-10-23 11:11:17 +08:00
|
|
|
|
2020-01-30 17:59:55 +08:00
|
|
|
<!-- 替换webappembd模块readme.txt中的版本号 -->
|
|
|
|
<replaceregexp file="datagear-webappembd/src/main/dist/readme.txt" encoding="UTF-8" match="数据齿轮\-v\d+(\.\d+){1,2}(\-\w+){0,1}" replace="数据齿轮-v${project.version}"/>
|
2018-10-23 11:11:17 +08:00
|
|
|
|
2020-01-30 17:59:55 +08:00
|
|
|
<!-- 替换webappembd模块startup.bat中的版本号 -->
|
|
|
|
<replaceregexp file="datagear-webappembd/src/main/dist/startup.bat" encoding="UTF-8" match="datagear\-webappembd\-\d+(\.\d+){1,2}(\-\w+){0,1}" replace="datagear-webappembd-${project.version}"/>
|
2019-05-20 09:34:46 +08:00
|
|
|
|
2020-01-30 17:59:55 +08:00
|
|
|
<!-- 替换webappembd模块startup.sh中的版本号 -->
|
|
|
|
<replaceregexp file="datagear-webappembd/src/main/dist/startup.sh" encoding="UTF-8" match="datagear\-webappembd\-\d+(\.\d+){1,2}(\-\w+){0,1}" replace="datagear-webappembd-${project.version}"/>
|
2019-05-20 09:34:46 +08:00
|
|
|
|
2018-10-23 11:11:17 +08:00
|
|
|
</tasks>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2018-09-12 20:16:11 +08:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|