gpt4 book ai didi

java - 解压缩位于磁盘上的文件(maven-assembly-plugin)

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:57:03 35 4
gpt4 key购买 nike

我正在尝试输出在 ./target/dist 文件夹中运行项目所需的所有文件。我想在准备程序集时捆绑 JRE。 JRE 位于我的项目的基本目录中,包含在一个名为 jre.zip 的 zip 文件中。

./jre.zip如何解压到./target/dist文件夹中?

这是我的程序集的 XML。

<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd">
<id>dist</id>
<formats>
<format>dir</format>
</formats>
<baseDirectory>./</baseDirectory>
<fileSets>
<fileSet>
<directory>./</directory>
<outputDirectory>./jre</outputDirectory>
<excludes>
<exclude>*/**</exclude>
</excludes>
</fileSet>
</fileSets>
<files>
<file>
<source>${project.build.directory}/${project.build.finalName}.jar</source>
<destName>${artifactId}.jar</destName>
<outputDirectory>./</outputDirectory>
</file>
</files>
</assembly>

最佳答案

虽然您可以使用 Maven Assembly 插件解压依赖项,但我很怀疑它不能与 jre 一起工作....

我建议你在执行 Assembly 插件之前解压 jre

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>prepare</id>
<phase>validate</phase>
<configuration>
<tasks>
<echo message="prepare phase" />
<unzip src="jre.zip" dest="target/jre"/>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>

关于java - 解压缩位于磁盘上的文件(maven-assembly-plugin),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33441902/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com