Maven将辅助文件部署到存储库

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Maven将辅助文件部署到存储库相关的知识,希望对你有一定的参考价值。

我希望与我的罐子,战争等一起部署XML文件。我可以使用分类器手动执行此操作:

mvn deploy:deploy-file -DgroupId=${GROUP_ID} 
-DartifactId=$ARTIFACT_ID 
-Dversion=$VERSION 
-Dpackaging=xml 
-Dclassifier=metadata 
-Dfile=metadata.xml 
-DrepositoryId=releases 
-Durl=http://localhost/nexus/content/repositories/releases 
-DgeneratePom=false

我希望从pom.xml中的属性填充xml文件,并将其与主工件一起部署在一个简单的命令中,这适用于我们所有的内部项目。

是否可以配置部署插件来执行此操作(以及如何)?或者我是否需要沿着其他路线(自定义maven插件)?

答案

用于此类目的的最佳解决方案是使用build-helper-maven-plugin,如下所示:

  <plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>build-helper-maven-plugin</artifactId>
    <version>1.8</version>
    <executions>
      <execution>
        <id>attach-artifacts</id>
        <phase>package</phase>
        <goals>
          <goal>attach-artifact</goal>
        </goals>
        <configuration>
          <artifacts>
            <artifact>
              <file>x1.xml</file>
              <type>xml</type>
              <classifier>optional</classifier>
            </artifact>
            ...
          </artifacts>
        </configuration>
      </execution>
    </executions>
  </plugin>

通过这种设置,您可以使用通常的mvn deploy,它还可以部署您可以附加到常用构建工件的其他工件。

以上是关于Maven将辅助文件部署到存储库的主要内容,如果未能解决你的问题,请参考以下文章

Gradle部署

将jar部署到maven内部仓库

bug记录----Maven项目发布失败

通过 Maven 将整个目录上传/下载到 Nexus

Maven 部署到快照而不是发布

maven 发布/部署到 github 包