gpt4 book ai didi

maven-2 - 带汽车扩展的Maven war 神器

转载 作者:行者123 更新时间:2023-12-04 18:14:44 28 4
gpt4 key购买 nike

我正在尝试使用 Maven 生成用于在 Vignette Portal 上部署的工件。包装与war完全一样工件但文件应该有 car取而代之。

我尝试过但无法完成的选项。

  • 使用 war 插件并重命名最终工件(不断添加 .war 扩展名)
  • 使用带有 zip 描述符的程序集插件(无法将 .zip 更改为 .car 扩展名)
  • 按照说明创建新的包装类型 here (不能为 .car 扩展使用 war 插件)

  • 哪个是生成 .car 文件的最简单的“Maven”方式?你能给我一些指导吗?

    谢谢你。

    最佳答案

    我认为不可能重命名项目的主要可交付工件。

    无论如何,在过去,到目前为止,我所做的是让 maven 使用新名称复制文件,然后将其“附加”到构建的可交付成果中;通过配置两个插件:

  • maven-ant-run复制
  • maven-build-helper附加以便与我的项目的主要工件一起部署到我的存储库。
    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-antrun-plugin</artifactId>
    <executions>
    <execution>
    <phase>package</phase>
    <configuration>
    <target>
    <copy file="${project.build.directory}/${project.build.finalName}.war"
    tofile="${project.build.directory}/${project.build.finalName}.car" />
    </target>
    </configuration>
    <goals>
    <goal>run</goal>
    </goals>
    </execution>
    </executions>
    </plugin>

  • 第二个:
        <plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>build-helper-maven-plugin</artifactId>
    <executions>
    <execution>
    <id>attach-instrumented-jar</id>
    <phase>verify</phase>
    <goals>
    <goal>attach-artifact</goal>
    </goals>
    <configuration>
    <artifacts>
    <artifact>
    <file>${project.build.directory}/${project.build.finalName}.car</file>
    <type>car</type>
    </artifact>
    </artifacts>
    </configuration>
    </execution>
    </executions>
    </plugin>

    我希望这可以帮助你。至少在您找到更好的解决方案之前。

    关于maven-2 - 带汽车扩展的Maven war 神器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6015639/

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