Maven解压以忽略原始文件夹
Posted
技术标签:
【中文标题】Maven解压以忽略原始文件夹【英文标题】:Maven unpack to disregard original folder 【发布时间】:2015-05-24 16:40:14 【问题描述】:我的一个项目的结构如下:
.\ca\<modulename>\dist\<modulename>.zip
我想制作一个仅在一个包中包含 zip 文件的包,所以如果我有子模块 mod1
、mod2
、modn
,我最终会得到:
ZIP CONTENT:
mod1.zip
mod2.zip
...
modn.zip
到目前为止,我所做的是创建一个 maven 项目,并使用 maven dependency
和 assembly
插件,我得到了这个:
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack</id>
<phase>generate-sources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>es.xunta.emprego.cntxes</groupId>
<artifactId>myproject-cas</artifactId>
<version>$cas.version</version>
<overWrite>true</overWrite>
<outputDirectory>target/dependency</outputDirectory>
<type>zip</type>
<includes>ca/**/dist/*.zip</includes>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptor>src/main/assembly/zip.xml</descriptor>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<!-- this is used for inheritance merges -->
<phase>package</phase>
<!-- append to the packaging phase. -->
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
这里是assembly/zip.xml
:
<?xml version="1.0" encoding="UTF-8" ?>
<assembly>
<id>bin</id>
<formats>
<!-- formato de salida del empaquetado -->
<format>zip</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<outputDirectory>/</outputDirectory>
<directory>target/dependency</directory>
<includes>
<include>/**/dist/*.zip</include>
</includes>
<useDefaultExcludes>true</useDefaultExcludes>
</fileSet>
</fileSets>
</assembly>
但这是尊重我原来的 zip 的文件夹结构,所以结果是:
ZIP CONTENT
ca\mod1\dist\mod1.zip
ca\mod2\dist\mod2.zip
...
ca\modn\dist\modn.zip
这似乎是一个小问题,但模块的数量很大,收集不同的 zip 文件非常烦人,不得不浏览每个文件夹。我一直在为assembly
和dependency
苦苦挣扎,但还没有找到实现我想要的方法。请注意,我使用的是通配符 (ca/**/dist/*.zip
),因为在编译之前我不知道将存在的文件的名称。
有什么帮助吗?
【问题讨论】:
作为一种解决方法,您是否考虑过为每个模块使用单独的fileSet
?您可以在directory
中包含target/dependency/mod1/dist
之类的路径,并且只包含*.zip
。
我不能,我的模块数量是动态的,我需要 pom 保持静态:(
【参考方案1】:
我不知道是否有办法做到这一点,但这个问题可能会帮助你找到解决办法:execute ant / groovy script inside maven
根据链接的答案,这是一个带有 maven ANT 插件的 ANT 示例(我现在无法尝试):
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack</id>
<phase>generate-sources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>es.xunta.emprego.cntxes</groupId>
<artifactId>myproject-cas</artifactId>
<version>$cas.version</version>
<overWrite>true</overWrite>
<outputDirectory>target/dependency</outputDirectory>
<type>zip</type>
<includes>ca/**/dist/*.zip</includes>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<id>move</id>
<phase>generate-sources</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<copy todir="$project.basedir/target/dependency" flatten="true">
<fileset dir="$project.basedir/ca">
<include name="**/dist/*.zip"/>
</fileset>
</copy>
</target>
</configuration>
</execution>
</executions>
</plugin>
...
</plugins>
为了保证插件在同一阶段的执行顺序,至少需要 3.0.3 版本的 Maven。
【讨论】:
谢谢,但这对我来说不是一个真正的解决方案,我需要坚持使用 Maven :( MichelReap,它只会是 maven - 你不需要 ant 来使用 maven-antrun-plugin。 参见例如***.com/questions/4257858/…【参考方案2】:是否已安装 mod1.zip
、mod2.zip
等,或者它们可以安装到您的本地存储库中吗?你可以使用maven-dependency-plugin
:
<dependencies>
<dependency>
<groupId>com.whatever</groupId>
<artifactId>mod1</artifactId>
<version>1.0.0-SNAPSHOT</version>
<type>zip</type>
<dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.10</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>validate</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>$project.basedir/dist</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
在给定动态模块列表的情况下,这会让您重新维护此依赖项列表,但如果您能弄清楚如何使依赖项列表动态化,那么这可能会让您走得更远。
【讨论】:
【参考方案3】:你需要一个在dependency:unpack 和assembly:single 任务之间的插件来扁平化你的资源。
您可以摆弄 resources:copy-resources 任务,但这可能不会奏效,正如此处确认的那样:Maven : copy files without subdirectory structure
对于这种情况,如@Fabien 的回答中所述,创建了 maven ant 插件来调用各种非标准行为。
【讨论】:
以上是关于Maven解压以忽略原始文件夹的主要内容,如果未能解决你的问题,请参考以下文章
Git系列:第七篇-Maven项目下提交时忽略不必要的文件或文件夹