dion        2002/06/20 16:25:35

  Modified:    src/java/org/apache/maven Build.java
  Log:
  Checkstyle fixes
  
  Revision  Changes    Path
  1.14      +14 -3     jakarta-turbine-maven/src/java/org/apache/maven/Build.java
  
  Index: Build.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/java/org/apache/maven/Build.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- Build.java        19 Jun 2002 18:04:03 -0000      1.13
  +++ Build.java        20 Jun 2002 23:25:35 -0000      1.14
  @@ -278,9 +278,13 @@
        * <p>Verify the project as done in init: 
        * <ol>
        *   <li>Update the pom if needed.</li>
  -     *   <li>verify the project using ProjectVerifier</li>
  +     *   <li>verify the dependent jars for the project are available in
  +     *      the local repository, downloading as necessary</li>
        * </ol>
        * </p>
  +     *
  +     * @throws IntrospectionException if there are problems with the project 
  +     *      descriptor conversion
        */
       public void verifyProject() throws IntrospectionException, 
           FileNotFoundException, IOException, Exception
  @@ -308,7 +312,9 @@
       /**
        * The local repository of jar files, aka lib.repo/maven.repo.local
        *
  -     * @return a local Repository of jars
  +     * @return a local {@link Repository} of jars
  +     * @throws MalformedURLException if the url for the local repository is not
  +     *      able to be turned into a {@link URL}
        */
       public Repository getLocalRepository() throws MalformedURLException
       {
  @@ -324,6 +330,11 @@
       
       /**
        * The list of remote repositories, aka maven.repo.remote
  +     *
  +     * @return a list of {@link Repository repositories} that come from the
  +     *      <code>maven.repo.remote</code> property
  +     * @throws MalformedURLException if the url for the local repository is not
  +     *      able to be turned into a {@link URL}
        */
       public List getRemoteRepositories() throws MalformedURLException
       {
  
  
  

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

Reply via email to