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 jv...@apache.org on 2004/06/08 21:56:00 UTC

cvs commit: maven-components/maven-project/src/main/java/org/apache/maven/project DefaultMavenProjectBuilder.java

jvanzyl     2004/06/08 12:56:00

  Modified:    maven-project/src/main/java/org/apache/maven/project
                        DefaultMavenProjectBuilder.java
  Log:
  o turn on transitive deps by default, i'm starting to experiement
    with the plexus build.
  
  Revision  Changes    Path
  1.19      +1 -2      maven-components/maven-project/src/main/java/org/apache/maven/project/DefaultMavenProjectBuilder.java
  
  Index: DefaultMavenProjectBuilder.java
  ===================================================================
  RCS file: /home/cvs/maven-components/maven-project/src/main/java/org/apache/maven/project/DefaultMavenProjectBuilder.java,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- DefaultMavenProjectBuilder.java	8 Jun 2004 17:13:13 -0000	1.18
  +++ DefaultMavenProjectBuilder.java	8 Jun 2004 19:56:00 -0000	1.19
  @@ -84,7 +84,7 @@
       {
           // michal: I set it to false as this is backward compatible.
           // I think that this method should be revoved and version with 3 params should be used exclusivly 
  -        boolean  followTransitiveDeps = false;
  +        boolean  followTransitiveDeps = true;
   
           return build( projectDescriptor, useParentPom, followTransitiveDeps );
       }
  @@ -111,7 +111,6 @@
   
               setupMavenFinalName( project );
   
  -            
               if ( followTransitiveDeps )
               {
                   artifactCollector.collect( project, this );