mojohaus / rpm-maven-plugin

http://www.mojohaus.org/rpm-maven-plugin/
Other
56 stars 48 forks source link

More fine grained include & exclude filters like in maven-assembly #65

Closed rbjorklin closed 7 years ago

rbjorklin commented 8 years ago

maven-assembly has the possibility to filter on a more fine grained level which would be nice. See Advanced Artifact-Matching in includes and excludes

<dependencySet>
        <outputDirectory>app</outputDirectory>
        <includes>
            <include>*:application:jar:start:*</include>
            <include>*:application:jar:stop:*</include>
        </includes>
</dependencySet>
dantran commented 7 years ago

I strongly recommend for any build to populate a staging directory using other the pluginsand have rpm-m-p to convert the staging to RPM

otherwise, this plugin will become other plugins which will be extremely hard to maintain

rbjorklin commented 7 years ago

Brilliant, now I feel stupid for not realizing this. Thanks!