gpt4 book ai didi

java - Maven 程序集 : including a file at the parent level of baseDirectory

转载 作者:太空宇宙 更新时间:2023-11-04 10:47:34 25 4
gpt4 key购买 nike

我正在将 Maven 程序集用于一个多模块项目,如下所示

    PARENT\pom.xml 
--warModule
-- pom.xml
--/target/module-1.war
--configModule
--pom.xml
--target/**module-2.jar**
--distrib
--pom.xml
--src/assembly/assembly.xml

在我的分发模块中,我想打包并创建一个 jar 文件,该文件应仅包含 module-1.warmodule-2.jar 文件。

我的 distrib/pom.xml 看起来像这样

<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.wellsfargo.gateway.fx</groupId>
<artifactId>distrib</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>

<artifactId>distrib</artifactId>

<properties>
<izpack.version>5.1.2</izpack.version>
<izpack.base.dir>${project.build.directory}\${project.artifactId}-${project.version}-fx\izpack</izpack.base.dir>
<izpack.standalone.compiler.version>4.3.2</izpack.standalone.compiler.version>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<descriptors>
<descriptor>distrib/src/assembly/assembly.xml
</descriptor>
</descriptors>

</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>

</plugins>

我的 assembly.xml 看起来像这样 http://maven.apache.org/xsd/assembly-2.0.0.xsd"> 伊兹包装 ${main.basedir} 目录 错误

<fileSets>
<fileSet>
<directory>${project.build.directory}</directory>
<outputDirectory>propdeploy</outputDirectory>
</fileSet>
</fileSets>
<files>

<file>
<source>../warModule/target/module-1.war</source>
<destName>foreign-exchange-v2.war</destName>
<outputDirectory>wardeploy</outputDirectory>
</file>
<file>
<source>../configModule/target/module-2.jar</source>
<destName>module-2.jar</destName>
<outputDirectory>wardeploy</outputDirectory>
</file>

</files>

<dependencySets>
<dependencySet>
<unpack>true</unpack>
<useProjectArtifact>true</useProjectArtifact>
</dependencySet>
</dependencySets>

问题是当前无法识别分发的父目录,并提示位置 xxxx/distrib/warModule/target/module-v1.war 中的 noSuchFileFound ,对于 module-v2.war 也是如此。如何获取父文件夹子路径中的文件?

有什么想法吗?

最佳答案

说明:

主要问题是父 POM 和子 POM 都具有相同的artifactID。目前两个artifactID 都是:<artifactId>distrib</artifactId>

由于不明确,Maven 假设 ../带您到 Parent POM 的父文件夹,在这种情况下没有 /warModule文件夹在里面。

解决方案:

  1. 确保每个artifactID都是唯一的。
  2. (建议)遵循 Maven 指南来命名 groupID、artifactID:https://maven.apache.org/guides/mini/guide-naming-conventions.html

关于java - Maven 程序集 : including a file at the parent level of baseDirectory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48231797/

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