我目前正在开发一个基于 Maven 的项目,在该项目中我有生成 PDF 文件的单元测试,比如说“C:/result”目录(我绝对不希望在我的项目的任何目录中创建这些文件) .
使用 maven-assembly 插件,是否可以创建一个归档文件(最好是 zip 或 jar)来收集在“C:/result”中生成的文件?
基本上,我的目标是在每次部署项目的新版本时将此存档作为常规工件上传到 Nexus 服务器上。
提前谢谢。
我目前正在开发一个基于 Maven 的项目,在该项目中我有生成 PDF 文件的单元测试,比如说“C:/result”目录(我绝对不希望在我的项目的任何目录中创建这些文件) .
使用 maven-assembly 插件,是否可以创建一个归档文件(最好是 zip 或 jar)来收集在“C:/result”中生成的文件?
基本上,我的目标是在每次部署项目的新版本时将此存档作为常规工件上传到 Nexus 服务器上。
提前谢谢。
您需要定义类似于以下内容的程序集描述符:
<assembly
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
<id>bin</id>
<formats>
<format>zip</format>
</formats>
<baseDirectory>C:/</baseDirectory>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>results</directory>
<outputDirectory>./doc</outputDirectory>
</fileSet>
</fileSets>
</assembly>
另存为src/assembly/bin.xml
,它将从 pom 中引用。pom 将包含在以下build
部分中:
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>out</id>
<configuration>
<descriptors>
<descriptor>src/assembly/bin.xml</descriptor>
</descriptors>
</configuration>
<phase>verify</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
有关更多信息,请参阅Maven 程序集文档。