1 Star 0 Fork 1

27号 / vdbench

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 1.94 KB
一键复制 编辑 原始数据 按行查看 历史
lifw 提交于 2020-06-16 15:08 . 修改版本号
<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>com.wish.ops</groupId>
<artifactId>vdbench</artifactId>
<version>5.04.07-20200305</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<maven.build.timestamp.format>yyyy</maven.build.timestamp.format>
<timestamp>${maven.build.timestamp}</timestamp>
</properties>
<build>
<finalName>vdbench</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<includes>
<include>**/**.class</include>
</includes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<finalName>vdbench-${project.version}-${build.time}</finalName>
<appendAssemblyId>false</appendAssemblyId>
<descriptors>
<descriptor>src/main/resources/build/package.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>timestamp-property</id>
<goals>
<goal>timestamp-property</goal>
</goals>
</execution>
</executions>
<configuration>
<name>build.time</name>
<pattern>yyyy.MM.dd.HH.mm.ss</pattern>
<timeZone>GMT+8</timeZone>
<locale>zh_CN</locale>
</configuration>
</plugin>
</plugins>
</build>
</project>
Java
1
https://gitee.com/wen3062/vdbench.git
git@gitee.com:wen3062/vdbench.git
wen3062
vdbench
vdbench
master

搜索帮助