我正在尝试使用Maven生成用于在Vignette Portal上部署的工件。打包与war
工件完全相同,但该文件应该具有car
扩展名。
我尝试过的选项,但我无法完成。
哪个是最简单的'Maven'生成.car文件的方法?你能给我一些指导吗?
谢谢。
答案 0 :(得分:7)
我认为不可能重命名项目的主要可交付工件。
无论如何,在过去,我到目前为止所做的是让maven使用新名称复制文件,然后将其“附加”到构建的可交付成果;通过配置两个插件:
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>
我希望能帮助你。至少在找到更好的解决方案之前。