如何为 Maven 创建新的包装类型?

2022-09-01 06:48:47

我有一个使用Maven创建jar文件的要求,但是它们需要安装到带有“foobar”扩展名的存储库中,如果它们可以拥有自己的打包类型,这样我们就可以通过打包来识别这些工件,那就太好了。

我可以设置新的包装类型来执行此操作吗?


答案 1

要按照您的描述执行操作,请使用打包创建一个 Maven 项目(如此所述,因为不会有 mojo 定义)。在 src/main/resources/META-INF/plexus 子文件夹中,创建一个包含以下内容的组件.xml(假设您希望打包类型为“my-custom-type”,如果您愿意,请将其更改为“foobar”)。

<component-set>
  <components>
    <component>
      <role>org.apache.maven.lifecycle.mapping.LifecycleMapping</role>
      <role-hint>my-custom-type</role-hint>
      <implementation>
        org.apache.maven.lifecycle.mapping.DefaultLifecycleMapping
      </implementation>
      <configuration>
    <phases>
      <!--use the basic jar lifecycle bindings, add additional 
          executions in here if you want anything extra to be run-->          
      <process-resources>
        org.apache.maven.plugins:maven-resources-plugin:resources
      </process-resources>
      <package>
        org.apache.maven.plugins:maven-jar-plugin:jar
      </package>
      <install>
        org.apache.maven.plugins:maven-install-plugin:install
      </install>
      <deploy>
        org.apache.maven.plugins:maven-deploy-plugin:deploy
      </deploy>
    </phases>
      </configuration>
    </component>
    <component>
      <role>org.apache.maven.artifact.handler.ArtifactHandler</role>
      <role-hint>my-custom-type</role-hint>
      <implementation>
        org.apache.maven.artifact.handler.DefaultArtifactHandler
      </implementation>
      <configuration>
        <!--the extension used by Maven in the repository-->
        <extension>foobar</extension>
        <!--the type used when specifying dependencies etc.-->
        <type>my-custom-type</type>
        <!--the packaging used when declaring an implementation of 
          the packaging-->
        <packaging>my-custom-type</packaging>
      </configuration>
    </component>
  </components>
</component-set>

然后在要具有自定义打包的pom中,在打包元素中声明所需的类型,并确保已指定插件,以便可以贡献自定义打包。声明<扩展>true</扩展>告诉 Maven 该插件为 Maven 贡献了打包和/或类型处理程序。

<project xmlns="http://maven.apache.org/POM/4.0.0" 
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
                             http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>name.seller.rich</groupId>
  <artifactId>test</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>my-custom-type</packaging>
  <build>
    <plugins>
      <plugin>
        <groupId>name.seller.rich.maven.plugins</groupId>
        <artifactId>maven-foobar-plugin</artifactId>
        <version>0.0.1</version>
        <!--declare that this plugin contributes the component extensions-->
        <extensions>true</extensions>
      </plugin>
    </plugins>
  </build> 
</project>

当项目被打包时,它将是一个带有.jar扩展名的jar,但是当安装/部署它时,Maven将使用组件中指定的“.foobar”扩展名将文件交付到存储库.xml


答案 2

跟进富豪卖家的原始答案:

如果正如他建议的那样,您使用打包类型,那么很可能在您引用插件的项目中,您将收到:jar

[INFO] ------------------------------------------------------------------------
[ERROR] FATAL ERROR
[INFO] ------------------------------------------------------------------------
[INFO] The plugin descriptor for the plugin Plugin [com.ocado.mvn.packaging:Jar-Gem] was not found. Please verify that the plugin JAR /home/ndb/.m2/repository/com/ocado/mvn/packaging/Jar-Gem/1.0.0/Jar-Gem-1.0.0.jar is intact.

这是因为您生成的 JAR 中不存在插件描述符。

您可以使用以下内容绕过他提到的错误:No mojo definitions..

<packaging>maven-plugin</packaging>

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-plugin-plugin</artifactId>
            <version>3.1</version>
            <configuration>
                <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
            </configuration>
        </plugin>
    </plugins>
</build>

此配置可在此处的插件文档示例中找到。

打包类型生命周期将目标绑定到阶段。这在Sonatype的官方文档中进行了说明。maven-pluginplugin:descriptorgenerate-resources


推荐