You are viewing a plain text version of this content. The canonical link for it is here.
Posted to m2-dev@maven.apache.org by br...@apache.org on 2004/09/17 23:42:40 UTC

cvs commit: maven-components/maven-model maven.mdo

brett       2004/09/17 14:42:40

  Modified:    maven-model maven.mdo
  Log:
  v3 consistency
  
  Revision  Changes    Path
  1.53      +26 -1     maven-components/maven-model/maven.mdo
  
  Index: maven.mdo
  ===================================================================
  RCS file: /home/cvs/maven-components/maven-model/maven.mdo,v
  retrieving revision 1.52
  retrieving revision 1.53
  diff -u -r1.52 -r1.53
  --- maven.mdo	2 Sep 2004 12:34:19 -0000	1.52
  +++ maven.mdo	17 Sep 2004 21:42:40 -0000	1.53
  @@ -548,6 +548,15 @@
             <type>String</type>
           </field>
           <field>
  +          <name>integrationUnitTestSourceDirectory</name>
  +          <version>3.0.0+</version>
  +          <description>
  +            This element specifies a directory containing integration test
  +            sources of the project.
  +          </description>
  +          <type>String</type>
  +        </field>
  +        <field>
             <name>sourceModifications</name>
             <version>3.0.0+</version>
             <required>true</required>
  @@ -1261,6 +1270,22 @@
             <defaultValue>false</defaultValue>
           </field>
         </fields>
  +      <codeSegments>
  +        <codeSegment>
  +          <version>3.0.0+</version>
  +          <code>
  +            public boolean isFiltering()
  +            {
  +                return !"false".equals( filtering );
  +            }
  +
  +            public void setFiltering( boolean filtering )
  +            {
  +                this.filtering = ( filtering ? "true" : "false" );
  +            }
  +          </code>
  +        </codeSegment>
  +      </codeSegments>
       </class>
       <class>
         <name>SourceModification</name>
  @@ -1438,7 +1463,7 @@
       </class>
       <class>
         <name>GoalDecorator</name>
  -      <version>3.0.0+</version>
  +      <version>4.0.0</version>
         <fields>
           <field>
             <name>name</name>