geronimo-commands module should inherit filter settings from genesis.
---------------------------------------------------------------------
Key: GERONIMO-4737
URL: https://issues.apache.org/jira/browse/GERONIMO-4737
Project: Geronimo
Issue Type: Bug
Security Level: public (Regular issues)
Components: buildsystem
Affects Versions: 2.2
Reporter: Shawn Jiang
Assignee: Shawn Jiang
Priority: Minor
Fix For: 2.2
Attachments: G4737.patch
geronimo-commands has is own filter setting in pom.xml. The settings have
conflicts:
{code}
<resources>
<resource>
<directory>${pom.basedir}/src/main/resources</directory>
<includes>
<include>**/*</include>
</includes>
</resource>
<resource>
<directory>${pom.basedir}/src/main/resources</directory>
<filtering>true</filtering>
<includes>
<include>org/apache/geronimo/commands/version.properties</include>
</includes>
</resource>
{code}
One is <filtering>false</filtering>, the other is <filtering>true</filtering>.
This will result in filter setting merge error sometime.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.