jvanzyl     2002/11/24 10:01:36

  Modified:    src/java/org/apache/maven/project Project.java
  Log:
  refactoring
  
  Revision  Changes    Path
  1.44      +28 -71    
jakarta-turbine-maven/src/java/org/apache/maven/project/Project.java
  
  Index: Project.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-turbine-maven/src/java/org/apache/maven/project/Project.java,v
  retrieving revision 1.43
  retrieving revision 1.44
  diff -u -r1.43 -r1.44
  --- Project.java      14 Nov 2002 17:46:25 -0000      1.43
  +++ Project.java      24 Nov 2002 18:01:36 -0000      1.44
  @@ -75,83 +75,58 @@
   import org.dom4j.io.SAXReader;
   
   /**
  - * @author <a href="mailto:[EMAIL PROTECTED]";>Jason van Zyl</a>
  + * @author <a href="mailto:[EMAIL PROTECTED]";>Jason van Zyl</a>
    * @author <a href="mailto:[EMAIL PROTECTED]";>Vincent Massol</a>
    * @author <a href="mailto:[EMAIL PROTECTED]";>dIon Gillard</a>
    * @author <a href="mailto:[EMAIL PROTECTED]";>Glenn McAllister</a>
  + *
    * @version $Id$
  + *
  + * @todo Change the file reference for the source POM to an URL.
    */
   public class Project
        extends BaseObject
   {
  -    /**
  -     * Project dependencies
  -     */
  +    /** Project dependencies */
       private List dependencies;
   
  -    /**
  -     * Repository where this project is stored.
  -     */
  +    /** Repository where this project is stored. */
       private Repository repository;
   
  -    /**
  -     * Build information
  -     */
  +    /** Build information */
       private Build build;
   
  -    /**
  -     * Project Url
  -     */
  +    /** Project Url */
       private String url;
   
  -    /**
  -     * Project logo url
  -     */
  +    /** Project logo url */
       private String logo;
   
  -    /**
  -     * Project description
  -     */
  +    /** Project description */
       private String description;
   
  -    /** 
  -     * Project's issue tracking Url
  -     */
  +    /** Project's issue tracking Url */
       private String issueTrackingUrl;
   
  -    /**
  -     * Project's mailing lists.
  -     */
  +    /** Project's mailing lists. */
       private List mailingLists;
   
  -    /**
  -     * Project's developers.
  -     */
  +    /** Project's developers. */
       private List developers;
   
  -    /**
  -     * Project's (non-committing) contributors.
  -     */
  +    /** Project's (non-committing) contributors. */
       private List contributors;
   
  -    /**
  -     * Current version
  -     */
  +    /** Current version */
       private String currentVersion;
   
  -    /**
  -     * Organization that hosts the project.
  -     */
  +    /** Organization that hosts the project. */
       private Organization organization;
   
  -    /**
  -     * Year the project was started.
  -     */
  +    /** Year the project was started. */
       private String inceptionYear;
   
  -    /**
  -     * The base package for this project i.e. org.apache.turbine
  -     */
  +    /** The base package for this project i.e. org.apache.turbine */
       private String projectPackage;
   
       /**
  @@ -160,9 +135,7 @@
        */
       private String siteAddress;
       
  -    /**
  -     * The directory on the server where the site is stored.
  -     */
  +    /** The directory on the server where the site is stored. */
       private String siteDirectory;
   
       /**
  @@ -179,14 +152,10 @@
        */
       private String distributionDirectory;
   
  -    /**
  -     * Version of the project model.
  -     */
  +    /** Version of the project model. */
       private String pomVersion;
   
  -    /**
  -     * Versions associated with this project.
  -     */
  +    /** Versions associated with this project. */
       private List versions;
   
       /**
  @@ -195,34 +164,22 @@
        */
       private HashMap versionMap;
   
  -    /**
  -     * POM to extend.
  -     */
  +    /** POM to extend. */
       private String pomToExtend;
   
  -    /**
  -     * Gump repository id.
  -     */
  +    /** Gump repository id. */
       private String gumpRepositoryId;
       
  -    /**
  -     * Short description.
  -     */
  +    /** Short description. */
       private String shortDescription;
   
  -    /**
  -     * Project group id.
  -     */
  +    /** Project group id. */
       private String groupId;
   
  -    /**
  -     * File that this POM object was derived from.
  -     */
  +    /** File that this POM object was derived from. */
       private File file;
       
  -    /**
  -     * Map of dependency ids to their real paths in the system.
  -     */
  +    /** Map of dependency ids to their real paths in the system. */
       private Map dependencyPaths;
       
       /**
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to