Issue Details (XML | Word | Printable)

Key: MNG-3397
Type: Bug Bug
Status: Open Open
Priority: Major Major
Assignee: Unassigned
Reporter: Brett Porter
Votes: 32
Watchers: 32
Operations

If you were logged in you would be able to see more operations.
Maven 2

[RFC] change the POM to use attributes

Created: 10/Feb/08 11:59 PM   Updated: 16/Oct/08 11:09 AM
Component/s: POM
Affects Version/s: 2.0.8
Fix Version/s: 3.0

Time Tracking:
Not Specified

Patch Submitted: Yes


 All   Comments   Work Log   Change History      Sort Order: Ascending order - Click to sort in descending order


nicolas de loof added a comment - 16/Feb/08 06:19 AM
I tried to enable the "flat" modello format for collections, to change :

<plugin>
<executions>
<execution>
<id>xx</id>
<phase>xx</phase>
<goals>
<goal>xx</goal>
</goals>
</execution>
</executions>
</plugin>

.. to the more convice :

<plugin>
<execution id="xx" phase="xx">
<goal>xx</goal>
</executions>
</plugin>

but this didn't worked : the modello generated parser still search the "executions" in XML stream. Not investigated more yet on this.


Brett Porter added a comment - 16/Feb/08 06:20 PM
what change did you make to the model to enable this?

Darren Bell added a comment - 14/Apr/08 08:37 AM
When will this be rolled into a release?

Darren Bell added a comment - 16/Jun/08 03:49 AM
Yay, thanks Brett. So, when's 2.1 out?

Yang Gu added a comment - 16/Oct/08 11:09 AM
This feature will make pom.xml more concise.