1 Star 0 Fork 2.3K

半月 / datagear

forked from DataGear / datagear 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 5.35 KB
一键复制 编辑 原始数据 按行查看 历史
<?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>
<version>1.5.0</version>
<packaging>pom</packaging>
<name>datagear</name>
<url>http://www.datagear.tech</url>
<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>
<javax.json.version>1.0.4</javax.json.version>
<guava.version>19.0</guava.version>
<fastjson.version>1.2.35</fastjson.version>
<freemarker.version>2.3.28</freemarker.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-dataexchange</module>
<module>datagear-management</module>
<module>datagear-web</module>
<module>datagear-webembd</module>
<module>datagear-util</module>
<module>datagear-analysis</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>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.24</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>
<!-- 统一更新子模块版本号为父模块版本号插件 -->
<!-- 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>
<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模块datagear-version.properties中的版本号 -->
<replaceregexp file="datagear-web/src/main/resources/datagear-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模块readme.txt中的版本号 -->
<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}"/>
<!-- 替换webembd模块startup.bat中的版本号 -->
<replaceregexp file="datagear-webembd/src/main/dist/startup.bat" encoding="UTF-8" match="datagear\-webembd\-\d+(\.\d+){1,2}(\-\w+){0,1}" replace="datagear-webembd-${project.version}"/>
<!-- 替换webembd模块startup.sh中的版本号 -->
<replaceregexp file="datagear-webembd/src/main/dist/startup.sh" encoding="UTF-8" match="datagear\-webembd\-\d+(\.\d+){1,2}(\-\w+){0,1}" replace="datagear-webembd-${project.version}"/>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Java
1
https://gitee.com/byue/datagear.git
git@gitee.com:byue/datagear.git
byue
datagear
datagear
master

搜索帮助