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-05-14 19:23:42 +08:00
|
|
|
<version>1.3.0</version>
|
2018-09-12 20:16:11 +08:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<name>datagear</name>
|
|
|
|
|
|
|
|
<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>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>datagear-model</module>
|
|
|
|
<module>datagear-connection</module>
|
|
|
|
<module>datagear-dbinfo</module>
|
|
|
|
<module>datagear-persistence</module>
|
|
|
|
<module>datagear-dbmodel</module>
|
|
|
|
<module>datagear-management</module>
|
|
|
|
<module>datagear-web</module>
|
|
|
|
<module>datagear-webembd</module>
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
<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>
|
|
|
|
</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>
|
|
|
|
<!-- 替换web模块version.properties中的版本号 -->
|
|
|
|
<replaceregexp file="datagear-web/src/main/resources/version.properties" encoding="UTF-8" match="version=\d+(\.\d+){1,2}(\-\w+){0,1}" replace="version=${project.version}" />
|
|
|
|
|
|
|
|
<!-- 替换web模块readme.txt中的版本号 -->
|
|
|
|
<replaceregexp file="datagear-web/src/main/webapp/readme.txt" encoding="UTF-8" match="数据齿轮\-v\d+(\.\d+){1,2}(\-\w+){0,1}" replace="数据齿轮-v${project.version}" />
|
|
|
|
|
|
|
|
<!-- 为web模块的changelog.txt添加版本号行 -->
|
|
|
|
<echo file="datagear-web/src/main/webapp/WEB-INF/changelog.txt" encoding="UTF-8" append="true">
|
|
|
|
${line.separator}
|
|
|
|
-----------------------------------------
|
|
|
|
--v${project.version}
|
|
|
|
-----------------------------------------
|
|
|
|
${line.separator}
|
|
|
|
</echo>
|
|
|
|
|
|
|
|
<!-- 替换webembd模块version.properties中的版本号 -->
|
|
|
|
<replaceregexp file="datagear-webembd/src/main/dist/readme.txt" encoding="UTF-8" match="数据齿轮\-v\d+(\.\d+){1,2}(\-\w+){0,1}" replace="数据齿轮-v${project.version}" />
|
|
|
|
|
|
|
|
</tasks>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2018-09-12 20:16:11 +08:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|