Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Better support for custom Maven packaging types #12

Open
atomicknight opened this issue May 11, 2016 · 1 comment
Open

Better support for custom Maven packaging types #12

atomicknight opened this issue May 11, 2016 · 1 comment

Comments

@atomicknight
Copy link

It would be nice if the plugin could support custom Maven packaging types via a mapping mechanism. For example, maven-ear-plugin provides a configuration setting for mapping custom types to known types: http://maven.apache.org/plugins/maven-ear-plugin/modules.html#Custom_Artifact_Types

The currently-implemented packaging configuration setting works on a per-module basis, but builds that use custom types extensively would benefit from the ability to configure this setting in one place.

atomicknight added a commit to atomicknight/maven-jrebel-plugin that referenced this issue May 12, 2016
This change adds a new 'packagingTypeMappings' configuration setting to
support mapping of custom packaging types to standard packaging types.
Example configuration:

  <configuration>
    <packagingTypeMappings>
      <packagingTypeMapping>
        <type>custom-jar</type>
        <mapping>jar</mapping>
      </packagingTypeMapping>
    </packagingTypeMappings>
  </configuration>
@atomicknight
Copy link
Author

Created pull request #13.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant