You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by jv...@apache.org on 2004/04/12 16:44:12 UTC

cvs commit: maven-components/maven-core bootstrap-all.sh project.xml

jvanzyl     2004/04/12 07:44:12

  Modified:    maven-core bootstrap-all.sh project.xml
  Log:
  o Committing changes submitted by Trygve Laugstøl to accomodate the new form
  of specifying a parent model to use which is of the form:
  
  <parent>
    <groupId/>
      <artifactId/>
        <version/>
        </parent>
  
        This allows us to work consistently from the local repository or the
  unified
  source root where missing models are downloaded now that we have the required
  information within the <parent/> element.
  
  Revision  Changes    Path
  1.3       +11 -3     maven-components/maven-core/bootstrap-all.sh
  
  Index: bootstrap-all.sh
  ===================================================================
  RCS file: /home/cvs/maven-components/maven-core/bootstrap-all.sh,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- bootstrap-all.sh	10 Apr 2004 19:18:35 -0000	1.2
  +++ bootstrap-all.sh	12 Apr 2004 14:44:11 -0000	1.3
  @@ -12,14 +12,23 @@
     ./mboot-install.sh
   )
   
  +(
  +   echo "-----------------------------------------------------------------------"
  +   echo " Install the parent pom for all maven-component artifacts ... "
  +   echo "-----------------------------------------------------------------------"  
  +
  +   cd ..
  +   mboot --pom-install
  +)
  +
   # Build and install maven-model.
   (
     echo "-----------------------------------------------------------------------"
     echo " Building maven-model ... "
     echo "-----------------------------------------------------------------------"  
   
  -  cd ../maven-model
  -  ./build.sh
  +   cd ../maven-model
  +   ./build.sh
   )
   
   # Build and install maven-project.
  @@ -38,4 +47,3 @@
   echo "-----------------------------------------------------------------------"  
   
   ./bootstrap.sh
  -   
  
  
  
  1.6       +6 -2      maven-components/maven-core/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/maven-components/maven-core/project.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- project.xml	7 Apr 2004 20:28:21 -0000	1.5
  +++ project.xml	12 Apr 2004 14:44:11 -0000	1.6
  @@ -1,12 +1,16 @@
   <?xml version="1.0" encoding="ISO-8859-1"?>
   
   <project>
  -  <extend>../project.xml</extend>
  -  <id>maven-core</id>
  +  <parent>
  +    <groupId>maven</groupId>
  +    <artifactId>maven-component</artifactId>
  +    <version>2.0-SNAPSHOT</version>
  +  </parent>
     <groupId>maven</groupId>
     <artifactId>maven-core</artifactId>
     <name>Maven</name>
     <currentVersion>2.0-SNAPSHOT</currentVersion>
  +  <version>2.0-SNAPSHOT</version>  
     <inceptionYear>2001</inceptionYear>
     <package>org.apache.maven</package>
     <logo>/images/maven.gif</logo>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org