mojohaus / rpm-maven-plugin

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

Group inherentance from parent IDE checks #131

Open gunslingor opened 3 years ago

gunslingor commented 3 years ago

I have the group tag defined in my parent pom, but intelliJ IDEA tells me it is still required in the child pom so I have to add it as follows, while the optional ones like defaultUserName don't suffer from this... is there a way to overcome this, so this blank tag isn't required?

    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>rpm-maven-plugin</artifactId>
                <version>2.2.0</version>
                <extensions>true</extensions>
                <configuration>
                    <group/>
                    <mappings combine.children="append">
                        <mapping>
                            <directory>/etc/opt/software-6.3/gateway</directory>
                            <sources>
                                <source>
                                    <location>src/main/resources/config</location>
                                </source>
                            </sources>
                        </mapping>
                    </mappings>
                </configuration>
            </plugin>
        </plugins>
    </build>