cvs commit: maven/src/java/org/apache/maven/repository AbstractArtifact.java

2004-01-08 Thread dion
dion2004/01/07 23:03:49

  Modified:src/java/org/apache/maven/repository Tag: MAVEN-1_0-BRANCH
AbstractArtifact.java
  Log:
  Code Cleanup:
  - Use plexus FileUtils for fileRead
  - rename parameters for usability
  
  Revision  ChangesPath
  No   revision
  No   revision
  1.22.4.2  +13 -43maven/src/java/org/apache/maven/repository/AbstractArtifact.java
  
  Index: AbstractArtifact.java
  ===
  RCS file: 
/home/cvs/maven/src/java/org/apache/maven/repository/AbstractArtifact.java,v
  retrieving revision 1.22.4.1
  retrieving revision 1.22.4.2
  diff -u -r1.22.4.1 -r1.22.4.2
  --- AbstractArtifact.java 8 Jan 2004 05:25:51 -   1.22.4.1
  +++ AbstractArtifact.java 8 Jan 2004 07:03:49 -   1.22.4.2
  @@ -56,17 +56,16 @@
* 
*/
   
  +import java.io.File;
  +
   import org.apache.commons.logging.Log;
   import org.apache.commons.logging.LogFactory;
   import org.apache.maven.MavenConstants;
   import org.apache.maven.MavenUtils;
  -import org.apache.maven.verifier.ChecksumVerificationException;
  -import org.apache.maven.util.MD5Sum;
   import org.apache.maven.project.Dependency;
  -
  -import java.io.File;
  -import java.io.IOException;
  -import java.io.FileInputStream;
  +import org.apache.maven.util.MD5Sum;
  +import org.apache.maven.verifier.ChecksumVerificationException;
  +import org.apache.plexus.util.FileUtils;
   
   /**
* Base class from which all artifact subclasses are derived.
  @@ -81,7 +80,7 @@
   private Log log = LogFactory.getLog(AbstractArtifact.class);
   
   /** Platform specific file separator used for file system operations. */
  -protected static final String ps = File.separator;
  +protected static final String fs = File.separator;
   
   /** Dependency this artifact is based on. */
   private Dependency dependency;
  @@ -89,9 +88,6 @@
   /** Path to artifact. */
   private String path;
   
  -/** buffer size for file reading */
  -private static final int FILE_BUFFER_SIZE = 512;
  -
   /**
* Default constructor.
* @param dependency the dependency the artifact is based on
  @@ -114,9 +110,9 @@
   }
   
   /** @see Artifact#setPath */
  -public void setPath( String path )
  +public void setPath( String repositoryPath )
   {
  -this.path = path;
  +this.path = repositoryPath;
   }
   
   /** @see Artifact#getPath */
  @@ -133,9 +129,9 @@
   /** @see Artifact#generatePath */
   public String generatePath()
   {
  -return ps + getDependency().getArtifactDirectory()
  - + ps + getDependency().getType() + s
  - + ps + getDependency().getArtifact();
  +return fs + getDependency().getArtifactDirectory()
  + + fs + getDependency().getType() + s
  + + fs + getDependency().getArtifact();
   }
   
   /** @see Artifact#getUrlPath */
  @@ -210,7 +206,7 @@
   md5.setFile( getFile() );
   md5.execute();
   
  -actualChecksum = fileRead( checksumFile );
  +actualChecksum = FileUtils.fileRead( checksumFile.getCanonicalPath() );
   actualChecksum = actualChecksum.substring( 0, actualChecksum.length() - 
1 );
   }
   catch ( Exception e )
  @@ -226,31 +222,5 @@
   throw new ChecksumVerificationException(
   MavenUtils.getMessage( checksum.verification.error, getPath() ) );
   }
  -}
  -
  -/**
  - * Reads the contents of a file.
  - *
  - * @param file The name of the file to read.
  - * @return The file contents or null if read failed.
  - * @throws IOException if there is an error reading the file
  - */
  -String fileRead( File file )
  -throws IOException
  -{
  -StringBuffer buf = new StringBuffer();
  -
  -FileInputStream in = new FileInputStream( file );
  -
  -int count;
  -byte[] b = new byte[FILE_BUFFER_SIZE];
  -while ( ( count = in.read( b ) )  0 )  // blocking read
  -{
  -buf.append( new String( b, 0, count ) );
  -}
  -
  -in.close();
  -
  -return buf.toString();
   }
   }
  
  
  

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



cvs commit: maven/src/java/org/apache/maven AntProjectBuilder.java

2004-01-08 Thread dion
dion2004/01/07 23:05:57

  Modified:src/java/org/apache/maven Tag: MAVEN-1_0-BRANCH
AntProjectBuilder.java
  Log:
  More javadoc
  
  Revision  ChangesPath
  No   revision
  No   revision
  1.6.4.2   +1 -0  maven/src/java/org/apache/maven/AntProjectBuilder.java
  
  Index: AntProjectBuilder.java
  ===
  RCS file: /home/cvs/maven/src/java/org/apache/maven/AntProjectBuilder.java,v
  retrieving revision 1.6.4.1
  retrieving revision 1.6.4.2
  diff -u -r1.6.4.1 -r1.6.4.2
  --- AntProjectBuilder.java26 Nov 2003 11:45:16 -  1.6.4.1
  +++ AntProjectBuilder.java8 Jan 2004 07:05:57 -   1.6.4.2
  @@ -72,6 +72,7 @@
   /**
* Initialize Ant.
* @param project a Maven project
  + * @param context the maven context whose properties will be available to the 
Ant Project
* @return an Ant project
*/
   public static GrantProject build( final Project project, final 
MavenJellyContext context )
  
  
  

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



cvs commit: maven/src/java/org/apache/maven DependencyClasspathBuilder.java

2004-01-08 Thread dion
dion2004/01/07 23:08:31

  Modified:src/java/org/apache/maven Tag: MAVEN-1_0-BRANCH
DependencyClasspathBuilder.java
  Log:
  Javadoc fixes
  
  Revision  ChangesPath
  No   revision
  No   revision
  1.13.4.2  +4 -2  maven/src/java/org/apache/maven/DependencyClasspathBuilder.java
  
  Index: DependencyClasspathBuilder.java
  ===
  RCS file: /home/cvs/maven/src/java/org/apache/maven/DependencyClasspathBuilder.java,v
  retrieving revision 1.13.4.1
  retrieving revision 1.13.4.2
  diff -u -r1.13.4.1 -r1.13.4.2
  --- DependencyClasspathBuilder.java   7 Jan 2004 16:24:43 -   1.13.4.1
  +++ DependencyClasspathBuilder.java   8 Jan 2004 07:08:31 -   1.13.4.2
  @@ -76,6 +76,7 @@
*/
   public class DependencyClasspathBuilder
   {
  +/** path separator for the classpath */
   private static final String cps = System.getProperty( path.separator );
   
   // --
  @@ -83,7 +84,8 @@
   // --
   
   /**
  - * Create the dependency classpath.
  + * @return the dependency classpath for the given project.
  + * @param project the project to create the classpath for.
*
* @throws Exception If an error occurs while creating the classpath.
*/
  
  
  

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



[jira] Created: (MAVEN-1112) Update Open Symphony OSCache on Ibiblio

2004-01-08 Thread jira
Message:

  A new issue has been created in JIRA.

-
View the issue:

  http://jira.codehaus.org/secure/ViewIssue.jspa?key=MAVEN-1112


Here is an overview of the issue:
-
Key: MAVEN-1112
Summary: Update Open Symphony OSCache on Ibiblio
   Type: Improvement

 Status: Unassigned
   Priority: Minor

 Original Estimate: Unknown
 Time Spent: Unknown
  Remaining: Unknown

Project: maven

   Assignee: 
   Reporter: Emmanuel Bourg

Created: Thu, 8 Jan 2004 5:47 AM
Updated: Thu, 8 Jan 2004 5:47 AM

Description:
The version 2.0.1 of OSCache is now available at :

https://oscache.dev.java.net/files/documents/629/1578/oscache-2.0.1.jar

The repository on Ibiblio has only the version 1.7.5


-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


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



Re: Maven Eclipse Contribution

2004-01-08 Thread Mark H. Wilkinson
On Wed, 2004-01-07 at 15:54, Eddie Post wrote:
 Hellu,
 
 I had some problems getting the eclipse plugin to work well with the Junit 
 syntax.
 I noticed that the eclipse plugin work with the following syntax in the 
 project.xml:
 
   unitTestSourceDirectory ${basedir}/src/test /unitTestSourceDirectory
 
 
 However, I noticed in the maven manual that you should use (I think the 
 other is depriated):
 -
 unitTest
   resources
   resource
   directory${basedir}/src/test/directory
   /resource
   /resources
 /unitTest

I'm sure others will correct me if I'm wrong, but I don't think that
unitTestSourceDirectory is deprecated - it's still in the POM version
4 schema, for example. You use the unitTestSourceDirectory element to
say where the Java source code for the unit tests are. You use the
unitTestresources element to indicate where other resources (files
that should be included verbatim in the test-classes directory) are
located.

-Mark.


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



[jira] Commented: (MPCHECKSTYLE-1) Checkstyle Error - Got an exception - java.lang.ClassCastException

2004-01-08 Thread jira
The following comment has been added to this issue:

 Author: fabrizio giustina
Created: Thu, 8 Jan 2004 8:03 AM
   Body:
Still having this problem using maven rc-1 and checkstyle plugin 2.2.

The checkstyle report works if running alone (maven checkstyle). It doesn't work using 
more goals.
This happens on different project, you can try using pom from displaytag
http://cvs.sourceforge.net/viewcvs.py/displaytag/displaytag2/project.xml
or jtidy
http://cvs.sourceforge.net/viewcvs.py/jtidy/jtidy2/project.xml.

Running on Windows JDK 1.4 version 1.4.1_03.

In the log you get the following message for each class Can't find/access AST Node 
typecom.puppycrawl.tools.checkstyle.api.DetailAST. And the report is filled with: 
Got an exception - java.lang.ClassCastException .

Tryed removing report or goals: the ceckstyle plugin seem to work only if the 
checkstyle goal is run alone.

-
View the issue:

  http://jira.codehaus.org/secure/ViewIssue.jspa?key=MPCHECKSTYLE-1


Here is an overview of the issue:
-
Key: MPCHECKSTYLE-1
Summary: Checkstyle Error - Got an exception - java.lang.ClassCastException 
   Type: New Feature

 Status: Closed
   Priority: Major
 Resolution: FIXED

 Original Estimate: 0 minutes
 Time Spent: Unknown
  Remaining: 0 minutes

Project: maven-checkstyle-plugin
   Fix Fors:
 2.0
   Versions:
 1.1

   Assignee: Emmanuel Venisse
   Reporter: Nick Minutello

Created: Sat, 14 Jun 2003 6:05 AM
Updated: Thu, 8 Jan 2004 8:03 AM
Environment: JDK1.4.1_01 on Win2K

Description:

I have the latest HEAD build of Maven (built late 13th June GMT) and I am seeing this 
error 100s of times over in the checkstyle report.


Error Line  
Got an exception - java.lang.ClassCastException   0  


Mailing list conversations:

On Fri, Jun 13, 2003 at 04:40:44PM +0800, Willie Vu wrote:
  Vincent,
 
  After I changed antlr plugin to use 2.7.2, I run into this problem:
 
  XXX.java: 0: Got an exception - java.lang.ClassCastException
 
  What is the problem?
 
  Willie
 
 
 I think, I've ran into the same problem - and nothing to do with
 the new checkstyle jar in my case. You cab check this by looking at
 the checkstyle reports in target - they are all right at me.
 
 The problem is that in my project.xml I'm using the
 
 sourceDirectory${basedir}/src/java/sourceDirectory
 
 convention, and in the checkstyle jsl, that formats the raw checkstyle
 report expects the sourceDirectory as a ${baseDir} relative value (line 56):
 
 j:set var=fullSrcDir value=${basedir}/${pom.build.sourceDirectory}/

 And the whole jsl processing is went wrog from this, as the  transformer
 would be working with a ${basedir}/ ${basedir}/basedir_relative_filename
 from here. Sometimes it causes exception, sometimes simply wrong.
 
 A dirty/quick cure to modify project.xml not to use ${basedir} (altough
 if you use reactor you may get troubles with that). I'm thinking how to
 patch the jsl script, just wrote this, maybe more knowledgeable jelliers
 are faster at fix than I am.
 
 incze


However, my Project.xml uses relative src/java and I still have the same problem.




-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


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



[jira] Created: (MPCHANGELOG-24) Building CVS HEAD fails under JDK1.3.1 under Windows

2004-01-08 Thread jira
Message:

  A new issue has been created in JIRA.

-
View the issue:

  http://jira.codehaus.org/secure/ViewIssue.jspa?key=MPCHANGELOG-24


Here is an overview of the issue:
-
Key: MPCHANGELOG-24
Summary: Building CVS HEAD fails under JDK1.3.1 under Windows
   Type: Bug

 Status: Unassigned
   Priority: Major

 Original Estimate: Unknown
 Time Spent: Unknown
  Remaining: Unknown

Project: maven-changelog-plugin

   Assignee: 
   Reporter: Tomasz Skutnik

Created: Thu, 8 Jan 2004 8:12 AM
Updated: Thu, 8 Jan 2004 8:12 AM
Environment: C:\repositories\mavenset
ALLUSERSPROFILE=C:\Documents and Settings\All Users
ANT_HOME=Z:\dev\apache-ant-1.6.0
APPDATA=C:\Documents and Settings\tskutnik\Dane aplikacji
CommonProgramFiles=C:\Program Files\Common Files
COMPUTERNAME=TSKUTNIK
ComSpec=C:\WINNT\system32\cmd.exe
CYGWIN_HOME=C:\Cygwin
HOMEDRIVE=Z:
HOMEPATH=\
HOMESHARE=\\master\users\tskutnik
JAVA_HOME=C:\jdk1.3.1_09
LOGONSERVER=\\MASTER
MAVEN_HOME=Z:\maven
MAVEN_HOME_LOCAL=Z:\.maven
NUMBER_OF_PROCESSORS=1
OS=Windows_NT
Os2LibPath=C:\WINNT\system32\os2\dll;
Path=C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;Z:\bin;C:\jdk1.3.1_
09\bin;Z:\dev\apache-ant-1.6.0\bin;Z:\maven\bin;C:\Cygwin\bin
PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
PROCESSOR_ARCHITECTURE=x86
PROCESSOR_IDENTIFIER=x86 Family 15 Model 2 Stepping 9, GenuineIntel
PROCESSOR_LEVEL=15
PROCESSOR_REVISION=0209
ProgramFiles=C:\Program Files
PROMPT=$P$G
SystemDrive=C:
SystemRoot=C:\WINNT
TEMP=C:\DOCUME~1\tskutnik\USTAWI~1\Temp
TMP=C:\DOCUME~1\tskutnik\USTAWI~1\Temp
USERDNSDOMAIN=hq.abg.com.pl
USERDOMAIN=ABG
USERNAME=tskutnik
USERPROFILE=C:\Documents and Settings\tskutnik
windir=C:\WINNT

Description:
Building maven HEAD version fails on maven-changelog-plugin due to JUnit test 
depending on StringBuffer feature introduced in JDK1.4.

Patch:

Index: changelog/src/test/org/apache/maven/cvslib/CvsLogListenerTest.java
===
RCS file: 
/home/cvspublic/maven-plugins/changelog/src/test/org/apache/maven/cvslib/CvsLogListenerTest.java,v
retrieving revision 1.1
diff -u -u -r1.1 CvsLogListenerTest.java
--- changelog/src/test/org/apache/maven/cvslib/CvsLogListenerTest.java  25 Oct 2003 
18:33:13 -  1.1
+++ changelog/src/test/org/apache/maven/cvslib/CvsLogListenerTest.java  8 Jan 2004 
13:26:12 -
@@ -87,7 +87,7 @@
 CvsLogListener listener = new CvsLogListener();
MessageEvent me = new MessageEvent(souce,MESSAGE,false);
 listener.messageSent(me);
-assertTrue(listener.getStdout().indexOf(MESSAGE)-1);
+assertTrue(listener.getStdout().toString().indexOf(MESSAGE)-1);
 
 }
 
@@ -101,7 +101,7 @@
CvsLogListener listener = new CvsLogListener();
MessageEvent me = new MessageEvent(souce,MESSAGE,true);
listener.messageSent(me);
-   assertTrue(listener.getStdout().indexOf(MESSAGE)==-1);
+   assertTrue(listener.getStdout().toString().indexOf(MESSAGE)==-1);
 
}
 



-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


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



[jira] Created: (MPCHECKSTYLE-14) license file not found if checkstyle is added in pom dependencies

2004-01-08 Thread jira
Message:

  A new issue has been created in JIRA.

-
View the issue:

  http://jira.codehaus.org/secure/ViewIssue.jspa?key=MPCHECKSTYLE-14


Here is an overview of the issue:
-
Key: MPCHECKSTYLE-14
Summary: license file not found if checkstyle is added in pom dependencies
   Type: Bug

 Status: Unassigned
   Priority: Major

 Original Estimate: Unknown
 Time Spent: Unknown
  Remaining: Unknown

Project: maven-checkstyle-plugin
   Versions:
 2.2

   Assignee: 
   Reporter: fabrizio giustina

Created: Thu, 8 Jan 2004 8:14 AM
Updated: Thu, 8 Jan 2004 8:14 AM
Environment: maven rc1, checkstyle plugin 2.2, jdk 1.4, windows

Description:
if you add a dependency to checkstyle in pom using classloader root:

dependency
  idcheckstyle/id
  version3.2/version
  properties
classloaderroot/classloader
  /properties
/dependency

the checkstyle plugin will not work, complaining it can't find a license file:
  =
  = W A R N I N G =
  =
  =  Your project doesn't contain a header file specified as: =
  =  C:\apps\plugins\project\LICENSE.txt
  =  Checkstyle needs it to check the existence of the License in =
  =  your source files. If it can't find this file, it throws an  =
  =  error.   =
  =  A temporary solution is to create an empty LICENSE.txt file. =
  =  Though, we recommend that you edit this License. =
  =

note the license file is there and the checkstyle plugin works after removing the 
dependency from POM.

(I tried to add the root dependency as a workaround for MPCHECKSTYLE-1)


-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


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



cvs commit: maven-plugins/changelog/src/test/org/apache/maven/cvslib CvsLogListenerTest.java

2004-01-08 Thread evenisse
evenisse2004/01/08 06:17:12

  Modified:changelog/src/test/org/apache/maven/cvslib
CvsLogListenerTest.java
  Log:
  Fix MPCHANGELOG-24.
  
  Revision  ChangesPath
  1.2   +3 -3  
maven-plugins/changelog/src/test/org/apache/maven/cvslib/CvsLogListenerTest.java
  
  Index: CvsLogListenerTest.java
  ===
  RCS file: 
/home/cvs/maven-plugins/changelog/src/test/org/apache/maven/cvslib/CvsLogListenerTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- CvsLogListenerTest.java   25 Oct 2003 18:33:13 -  1.1
  +++ CvsLogListenerTest.java   8 Jan 2004 14:17:12 -   1.2
  @@ -87,7 +87,7 @@
   CvsLogListener listener = new CvsLogListener();
MessageEvent me = new MessageEvent(souce,MESSAGE,false);
   listener.messageSent(me);
  -assertTrue(listener.getStdout().indexOf(MESSAGE)-1);
  +assertTrue(listener.getStdout().toString().indexOf(MESSAGE)-1);
   
   }
   
  @@ -101,7 +101,7 @@
CvsLogListener listener = new CvsLogListener();
MessageEvent me = new MessageEvent(souce,MESSAGE,true);
listener.messageSent(me);
  - assertTrue(listener.getStdout().indexOf(MESSAGE)==-1);
  + assertTrue(listener.getStdout().toString().indexOf(MESSAGE)==-1);
   
}
   
  
  
  

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



[jira] Closed: (MPCHANGELOG-24) Building CVS HEAD fails under JDK1.3.1 under Windows

2004-01-08 Thread jira
Message:

   The following issue has been closed.

   Resolver: Emmanuel Venisse
   Date: Thu, 8 Jan 2004 8:34 AM

Applied
-
View the issue:

  http://jira.codehaus.org/secure/ViewIssue.jspa?key=MPCHANGELOG-24


Here is an overview of the issue:
-
Key: MPCHANGELOG-24
Summary: Building CVS HEAD fails under JDK1.3.1 under Windows
   Type: Bug

 Status: Closed
   Priority: Major
 Resolution: FIXED

 Original Estimate: Unknown
 Time Spent: Unknown
  Remaining: Unknown

Project: maven-changelog-plugin
   Fix Fors:
 1.4

   Assignee: Emmanuel Venisse
   Reporter: Tomasz Skutnik

Created: Thu, 8 Jan 2004 8:12 AM
Updated: Thu, 8 Jan 2004 8:34 AM
Environment: C:\repositories\mavenset
ALLUSERSPROFILE=C:\Documents and Settings\All Users
ANT_HOME=Z:\dev\apache-ant-1.6.0
APPDATA=C:\Documents and Settings\tskutnik\Dane aplikacji
CommonProgramFiles=C:\Program Files\Common Files
COMPUTERNAME=TSKUTNIK
ComSpec=C:\WINNT\system32\cmd.exe
CYGWIN_HOME=C:\Cygwin
HOMEDRIVE=Z:
HOMEPATH=\
HOMESHARE=\\master\users\tskutnik
JAVA_HOME=C:\jdk1.3.1_09
LOGONSERVER=\\MASTER
MAVEN_HOME=Z:\maven
MAVEN_HOME_LOCAL=Z:\.maven
NUMBER_OF_PROCESSORS=1
OS=Windows_NT
Os2LibPath=C:\WINNT\system32\os2\dll;
Path=C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;Z:\bin;C:\jdk1.3.1_
09\bin;Z:\dev\apache-ant-1.6.0\bin;Z:\maven\bin;C:\Cygwin\bin
PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
PROCESSOR_ARCHITECTURE=x86
PROCESSOR_IDENTIFIER=x86 Family 15 Model 2 Stepping 9, GenuineIntel
PROCESSOR_LEVEL=15
PROCESSOR_REVISION=0209
ProgramFiles=C:\Program Files
PROMPT=$P$G
SystemDrive=C:
SystemRoot=C:\WINNT
TEMP=C:\DOCUME~1\tskutnik\USTAWI~1\Temp
TMP=C:\DOCUME~1\tskutnik\USTAWI~1\Temp
USERDNSDOMAIN=hq.abg.com.pl
USERDOMAIN=ABG
USERNAME=tskutnik
USERPROFILE=C:\Documents and Settings\tskutnik
windir=C:\WINNT

Description:
Building maven HEAD version fails on maven-changelog-plugin due to JUnit test 
depending on StringBuffer feature introduced in JDK1.4.

Patch:

Index: changelog/src/test/org/apache/maven/cvslib/CvsLogListenerTest.java
===
RCS file: 
/home/cvspublic/maven-plugins/changelog/src/test/org/apache/maven/cvslib/CvsLogListenerTest.java,v
retrieving revision 1.1
diff -u -u -r1.1 CvsLogListenerTest.java
--- changelog/src/test/org/apache/maven/cvslib/CvsLogListenerTest.java  25 Oct 2003 
18:33:13 -  1.1
+++ changelog/src/test/org/apache/maven/cvslib/CvsLogListenerTest.java  8 Jan 2004 
13:26:12 -
@@ -87,7 +87,7 @@
 CvsLogListener listener = new CvsLogListener();
MessageEvent me = new MessageEvent(souce,MESSAGE,false);
 listener.messageSent(me);
-assertTrue(listener.getStdout().indexOf(MESSAGE)-1);
+assertTrue(listener.getStdout().toString().indexOf(MESSAGE)-1);
 
 }
 
@@ -101,7 +101,7 @@
CvsLogListener listener = new CvsLogListener();
MessageEvent me = new MessageEvent(souce,MESSAGE,true);
listener.messageSent(me);
-   assertTrue(listener.getStdout().indexOf(MESSAGE)==-1);
+   assertTrue(listener.getStdout().toString().indexOf(MESSAGE)==-1);
 
}
 



-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


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



[jira] Commented: (MPPDF-1) PDF Plug-In 2.0

2004-01-08 Thread jira
The following comment has been added to this issue:

 Author: Arnaud HERITIER
Created: Thu, 8 Jan 2004 8:34 AM
   Body:

New link to FOP binaries :
http://mir2.ovh.net/ftp.apache.org/dist/xml/fop/fop-0.20.5-bin.zip
You need to extract the fop and the batik jars and put them in your local repository.
Rename them : batik-1.5-fop-0.20-5.jar and fop-0.20.5.jar.

Modify the project.xml to update dependencies.
-
View the issue:

  http://jira.codehaus.org/secure/ViewIssue.jspa?key=MPPDF-1


Here is an overview of the issue:
-
Key: MPPDF-1
Summary: PDF Plug-In 2.0
   Type: Improvement

 Status: Unassigned
   Priority: Major

 Original Estimate: 20 minutes
 Time Spent: Unknown
  Remaining: 20 minutes

Project: maven-pdf-plugin

   Assignee: 
   Reporter: Andrew Jaquith

Created: Tue, 24 Jun 2003 9:12 AM
Updated: Thu, 8 Jan 2004 8:34 AM
Environment: All

Description:
I have completely re-written the PDF plug-in. It solves most of the thorniest issues, 
such as table formatting, more levels in the table of contents, and image sizing. The 
graphic design is also dramatically improved.


-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


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



[jira] Commented: (MPPDF-1) PDF Plug-In 2.0

2004-01-08 Thread jira
The following comment has been added to this issue:

 Author: Arnaud HERITIER
Created: Thu, 8 Jan 2004 8:37 AM
   Body:
fo-cover.xslt is missing.
You need to remove it from the project2fo.xslt
-
View the issue:

  http://jira.codehaus.org/secure/ViewIssue.jspa?key=MPPDF-1


Here is an overview of the issue:
-
Key: MPPDF-1
Summary: PDF Plug-In 2.0
   Type: Improvement

 Status: Unassigned
   Priority: Major

 Original Estimate: 20 minutes
 Time Spent: Unknown
  Remaining: 20 minutes

Project: maven-pdf-plugin

   Assignee: 
   Reporter: Andrew Jaquith

Created: Tue, 24 Jun 2003 9:12 AM
Updated: Thu, 8 Jan 2004 8:37 AM
Environment: All

Description:
I have completely re-written the PDF plug-in. It solves most of the thorniest issues, 
such as table formatting, more levels in the table of contents, and image sizing. The 
graphic design is also dramatically improved.


-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


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



[jira] Updated: (MPPDF-1) PDF Plug-In 2.0

2004-01-08 Thread jira
The following issue has been updated:

Updater: Arnaud HERITIER (mailto:[EMAIL PROTECTED])
   Date: Thu, 8 Jan 2004 9:09 AM
Comment:
Updated jar plug-in.
copy it in your MAVEN_HOME/plugins to use it.
- Dependencies to fop 0.20-5 final jar. See comments to download and install it.
- Dependency to fo-cover.xslt removed from project2fo.xslt.
Changes:
 Attachment changed to maven-pdf-plugin-2.0.jar
-
For a full history of the issue, see:

  http://jira.codehaus.org/secure/ViewIssue.jspa?key=MPPDF-1page=history

-
View the issue:

  http://jira.codehaus.org/secure/ViewIssue.jspa?key=MPPDF-1


Here is an overview of the issue:
-
Key: MPPDF-1
Summary: PDF Plug-In 2.0
   Type: Improvement

 Status: Unassigned
   Priority: Major

 Original Estimate: 20 minutes
 Time Spent: Unknown
  Remaining: 20 minutes

Project: maven-pdf-plugin

   Assignee: 
   Reporter: Andrew Jaquith

Created: Tue, 24 Jun 2003 9:12 AM
Updated: Thu, 8 Jan 2004 9:09 AM
Environment: All

Description:
I have completely re-written the PDF plug-in. It solves most of the thorniest issues, 
such as table formatting, more levels in the table of contents, and image sizing. The 
graphic design is also dramatically improved.


-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


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



Re: cvs commit: maven/src/test/java/org/apache/maven/util EnhancedStringTokenizerTest.java

2004-01-08 Thread Ben Walding
Yeah, forgot to switch licenses.  That's my code, I wrote it. I'll 
change to ASL shortly.
(it comes from another library of mine)

[EMAIL PROTECTED] wrote:

Jason van Zyl [EMAIL PROTECTED] wrote on 08/01/2004 02:01:27 AM:

 

On Wed, 2004-01-07 at 09:56, [EMAIL PROTECTED] wrote:
   

dion2004/01/07 06:56:49

 Modified:src/test/java/org/apache/maven/util Tag: 
 

MAVEN-1_0-BRANCH
 

   EnhancedStringTokenizerTest.java
 Log:
 Code cleanup
 - Note: This class is GPL licensed!
 

Who put that in the repository?

It has to go immediately.
   

Ben apparently.

Maybe he can simply switch licenses, and forgot to.
--
dIon Gillard, Multitask Consulting
Blog:  http://blogs.codehaus.org/people/dion/




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



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


[jira] Commented: (MPPDF-1) PDF Plug-In 2.0

2004-01-08 Thread jira
The following comment has been added to this issue:

 Author: Emmanuel Venisse
Created: Thu, 8 Jan 2004 9:57 AM
   Body:
I tested the plugin for commit it to cvs but there are some problems.

- it's necessary to have thead tag arround tr/th. I prefer test if thead is present, 
and if not use only tr/th

- pdf doens't work with maven xodc content due to duplicate fo:block id

It's an excellent work, I'll update it in cvs when problems are resolved.

For the cover page, we can have the project name and the short description.
-
View the issue:

  http://jira.codehaus.org/secure/ViewIssue.jspa?key=MPPDF-1


Here is an overview of the issue:
-
Key: MPPDF-1
Summary: PDF Plug-In 2.0
   Type: Improvement

 Status: Unassigned
   Priority: Major

 Original Estimate: 20 minutes
 Time Spent: Unknown
  Remaining: 20 minutes

Project: maven-pdf-plugin

   Assignee: 
   Reporter: Andrew Jaquith

Created: Tue, 24 Jun 2003 9:12 AM
Updated: Thu, 8 Jan 2004 9:57 AM
Environment: All

Description:
I have completely re-written the PDF plug-in. It solves most of the thorniest issues, 
such as table formatting, more levels in the table of contents, and image sizing. The 
graphic design is also dramatically improved.


-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


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



[jira] Commented: (MPPDF-1) PDF Plug-In 2.0

2004-01-08 Thread jira
The following comment has been added to this issue:

 Author: Arnaud HERITIER
Created: Thu, 8 Jan 2004 10:08 AM
   Body:
I'm agree with you.
I'll try to correct the thead limitation and the cover page when possible.
I tested the plugin with maven changes page and maven dependencies page and it worked 
(after plugins modifications to generate thead tags).
With which page had you a problem ??
-
View the issue:

  http://jira.codehaus.org/secure/ViewIssue.jspa?key=MPPDF-1


Here is an overview of the issue:
-
Key: MPPDF-1
Summary: PDF Plug-In 2.0
   Type: Improvement

 Status: Unassigned
   Priority: Major

 Original Estimate: 20 minutes
 Time Spent: Unknown
  Remaining: 20 minutes

Project: maven-pdf-plugin

   Assignee: 
   Reporter: Andrew Jaquith

Created: Tue, 24 Jun 2003 9:12 AM
Updated: Thu, 8 Jan 2004 10:08 AM
Environment: All

Description:
I have completely re-written the PDF plug-in. It solves most of the thorniest issues, 
such as table formatting, more levels in the table of contents, and image sizing. The 
graphic design is also dramatically improved.


-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


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



[jira] Commented: (MPPDF-1) PDF Plug-In 2.0

2004-01-08 Thread jira
The following comment has been added to this issue:

 Author: Emmanuel Venisse
Created: Thu, 8 Jan 2004 10:19 AM
   Body:
Checkout maven cvs and generate the pdf for the full content.

...
[java] [INFO] area contents overflows area in line
[java] [ERROR] file:/D:/cvs_repo/jakarta/maven/target/pdf/project.fo:2660:37 The 
id /
start/download.html already exists in this document
[java] org.apache.fop.apps.FOPException: 
file:/D:/cvs_repo/jakarta/maven/target/pdf/pr
oject.fo:2660:37 The id /start/download.html already exists in this document
[java]  at 
org.apache.fop.datatypes.IDReferences.createID(IDReferences.java:119)
[java]  at org.apache.fop.fo.flow.Block.layout(Block.java:203)
[java]  at org.apache.fop.fo.flow.AbstractFlow.layout(AbstractFlow.java:154)
[java]  at org.apache.fop.fo.flow.AbstractFlow.layout(AbstractFlow.java:110)
[java]  at 
org.apache.fop.fo.pagination.PageSequence.makePage(PageSequence.java:40
0)
[java]  at 
org.apache.fop.fo.pagination.PageSequence.format(PageSequence.java:338)

[java]  at org.apache.fop.apps.StreamRenderer.render(StreamRenderer.java:262)
[java]  at org.apache.fop.fo.FOTreeBuilder.endElement(FOTreeBuilder.java:223)
[java]  at org.apache.xerces.parsers.AbstractSAXParser.endElement(Unknown 
Source)
[java]  at 
org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanEndElement(Unknown
Source)
[java]  at 
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDi
spatcher.dispatch(Unknown Source)
[java]  at 
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unkn
own Source)
[java]  at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
[java]  at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
[java]  at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
[java]  at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
[java]  at org.apache.fop.apps.Driver.render(Driver.java:498)
[java]  at 
org.apache.fop.apps.CommandLineStarter.run(CommandLineStarter.java:106)

[java]  at org.apache.fop.apps.Fop.main(Fop.java:62)
[java]
[java]
-
View the issue:

  http://jira.codehaus.org/secure/ViewIssue.jspa?key=MPPDF-1


Here is an overview of the issue:
-
Key: MPPDF-1
Summary: PDF Plug-In 2.0
   Type: Improvement

 Status: Unassigned
   Priority: Major

 Original Estimate: 20 minutes
 Time Spent: Unknown
  Remaining: 20 minutes

Project: maven-pdf-plugin

   Assignee: 
   Reporter: Andrew Jaquith

Created: Tue, 24 Jun 2003 9:12 AM
Updated: Thu, 8 Jan 2004 10:19 AM
Environment: All

Description:
I have completely re-written the PDF plug-in. It solves most of the thorniest issues, 
such as table formatting, more levels in the table of contents, and image sizing. The 
graphic design is also dramatically improved.


-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


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



[jira] Commented: (MPPDF-1) PDF Plug-In 2.0

2004-01-08 Thread jira
The following comment has been added to this issue:

 Author: Arnaud HERITIER
Created: Thu, 8 Jan 2004 10:30 AM
   Body:
ok. I will look at this.
-
View the issue:

  http://jira.codehaus.org/secure/ViewIssue.jspa?key=MPPDF-1


Here is an overview of the issue:
-
Key: MPPDF-1
Summary: PDF Plug-In 2.0
   Type: Improvement

 Status: Unassigned
   Priority: Major

 Original Estimate: 20 minutes
 Time Spent: Unknown
  Remaining: 20 minutes

Project: maven-pdf-plugin

   Assignee: 
   Reporter: Andrew Jaquith

Created: Tue, 24 Jun 2003 9:12 AM
Updated: Thu, 8 Jan 2004 10:30 AM
Environment: All

Description:
I have completely re-written the PDF plug-in. It solves most of the thorniest issues, 
such as table formatting, more levels in the table of contents, and image sizing. The 
graphic design is also dramatically improved.


-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


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



cvs commit: maven-plugins/genapp plugin.jelly

2004-01-08 Thread evenisse
evenisse2004/01/08 08:53:58

  Modified:genapp   plugin.jelly
  Log:
  Comment echo. genapp doesn't work if this echo are present 
  
  Revision  ChangesPath
  1.6   +2 -2  maven-plugins/genapp/plugin.jelly
  
  Index: plugin.jelly
  ===
  RCS file: /home/cvs/maven-plugins/genapp/plugin.jelly,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- plugin.jelly  30 Nov 2003 21:26:26 -  1.5
  +++ plugin.jelly  8 Jan 2004 16:53:58 -   1.6
  @@ -92,12 +92,12 @@
 /j:forEach
   
 !-- Show used variables for template --
  -  ant:echoParameters used in template:/ant:echo
  +  !-- ant:echoParameters used in template:/ant:echo --
 j:forEach var=var items=${maven.genapp.param.split}
   j:set var=varnamemaven.genapp.template.${var}/j:set
   j:set var=value value=${context.findVariable(varname)}/
   j:invoke method=toUpperCase on=${var} var=placeholder /
  -ant:echo${varname} (${placeholder}):${value}/ant:echo
  +!-- ant:echo${varname} (${placeholder}):${value}/ant:echo --
 /j:forEach
   
 !-- Turn the specified package into a path --
  
  
  

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



[jira] Created: (MAVENUPLOAD-54) upload xjavadoc-1.0.2 to it's own groupId

2004-01-08 Thread jira
Message:

  A new issue has been created in JIRA.

-
View the issue:

  http://jira.codehaus.org/secure/ViewIssue.jspa?key=MAVENUPLOAD-54


Here is an overview of the issue:
-
Key: MAVENUPLOAD-54
Summary: upload xjavadoc-1.0.2 to it's own groupId
   Type: New Feature

 Status: Open
   Priority: Major

 Original Estimate: Unknown
 Time Spent: Unknown
  Remaining: Unknown

Project: maven-upload-requests

   Assignee: Jason van Zyl
   Reporter: Ryan Sonnek

Created: Thu, 8 Jan 2004 12:54 PM
Updated: Thu, 8 Jan 2004 12:54 PM

Description:
the new xdoclet plugin (xdoclet-maven-plugin-1.2) only works if xjavadoc-1.0.2.jar is 
in the xjavadoc groupId.  The current jar is in the xdoclet groupId, so if a new group 
could be created called xjavadoc with the jar xjavadoc-1.0.2, this would be solved.


-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


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



cvs commit: maven-components/maven-core/src/java/org/apache/maven/jelly/tags - Imported sources

2004-01-08 Thread jvanzyl
jvanzyl 2004/01/08 14:20:54

  Log:
  Status:
  
  Vendor Tag:   APACHE
  Release Tags: MCORE
  
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/BaseTagLibrary.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/BaseTagSupport.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/jeez/MavenJeezTagLibrary.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/jeez/TagDefTag.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/jeez/TargetTag.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/maven/AddPathTag.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/maven/ConcatTag.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/maven/PluginVarTag.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/maven/CopyResources.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/maven/InputTag.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/maven/MavenTag.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/maven/MavenTagLibrary.java
  N maven-components/maven-core/src/java/org/apache/maven/jelly/tags/maven/PomTag.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/maven/ReactorTag.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/maven/SnapshotSignature.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/maven/MakeAbsolutePathTag.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/maven/MakeRelativePathTag.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/maven/ParamCheck.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/maven/RootRelativePathTag.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/maven/UserCheck.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/maven/PropertyTag.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/werkz/MavenPreGoalTag.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/werkz/MavenGoalTag.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/werkz/MavenAttainGoalTag.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/werkz/MavenPostGoalTag.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/werkz/MavenProjectTag.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/werkz/MavenWerkzTagLibrary.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/werkz/MavenAttainGoalListener.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/werkz/MavenAbstractWerkzTag.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/werkz/MavenAnonymousGoalTag.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/werkz/MavenAbstractGoalTag.java
  N maven-components/maven-core/src/java/org/apache/maven/jelly/tags/werkz/GoalTag.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/werkz/JellySession.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/werkz/ProjectTag.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/werkz/WerkzTagSupport.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/ant/AntTagLibrary.java
  N maven-components/maven-core/src/java/org/apache/maven/jelly/tags/ant/AntTag.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/ant/JellyPropsHandler.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/ant/FileIterator.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/ant/FileScanner.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/ant/FileScannerTag.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/ant/SetPropertyTag.java
  N 
maven-components/maven-core/src/java/org/apache/maven/jelly/tags/ant/TaskSource.java
  N maven-components/maven-core/src/java/org/apache/maven/jelly/tags/ant/package.html
  
  No conflicts created by this import

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



cvs commit: maven-components/maven-core .cvsignore

2004-01-08 Thread jvanzyl
jvanzyl 2004/01/08 14:22:08

  Modified:maven-core .cvsignore
  Log:
  o cleaning up .cvsignore
  
  Revision  ChangesPath
  1.2   +0 -17 maven-components/maven-core/.cvsignore
  
  Index: .cvsignore
  ===
  RCS file: /home/cvs/maven-components/maven-core/.cvsignore,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- .cvsignore8 Jan 2004 04:29:08 -   1.1
  +++ .cvsignore8 Jan 2004 22:22:08 -   1.2
  @@ -1,22 +1,5 @@
  -installers
  -maven-*.tar.gz
  -maven-*.zip
  -bootstrap
  -bootstrap-report
  -docs
   maven.log
   target
  -velocity.log*
  -work
   *~
  -build.properties
  -.classpath
  -.project
  -.nbattrs
  -lib
   *.ipr
   *.iws
  -*.iml
  -bin
  -.checkclipse
  -checkstyle-checkclipse.xml
  
  
  

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



[jira] Created: (MAVEN-1113) mboot doesn't support CSV remote repositories in build.properties

2004-01-08 Thread jira
Message:

  A new issue has been created in JIRA.

-
View the issue:

  http://jira.codehaus.org/secure/ViewIssue.jspa?key=MAVEN-1113


Here is an overview of the issue:
-
Key: MAVEN-1113
Summary: mboot doesn't support CSV remote repositories in build.properties
   Type: Bug

 Status: Unassigned
   Priority: Minor

 Original Estimate: Unknown
 Time Spent: Unknown
  Remaining: Unknown

Project: maven

   Assignee: 
   Reporter: Brett Porter

Created: Thu, 8 Jan 2004 5:32 PM
Updated: Thu, 8 Jan 2004 5:32 PM

Description:
maven.repo.remote can have multiple repositories, but mboot doesn't support this.


-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


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



[jira] Commented: (MPEAR-5) wrong documented property for ear plugin

2004-01-08 Thread jira
The following comment has been added to this issue:

 Author: Ryan Sonnek
Created: Thu, 8 Jan 2004 5:33 PM
   Body:
this issue can be closed.  the documentation at 
http://maven.apache.org/reference/plugins/ear/properties.html now has the correct 
property information.
-
View the issue:

  http://jira.codehaus.org/secure/ViewIssue.jspa?key=MPEAR-5


Here is an overview of the issue:
-
Key: MPEAR-5
Summary: wrong documented property for ear plugin
   Type: Bug

 Status: Unassigned
   Priority: Trivial

 Original Estimate: Unknown
 Time Spent: Unknown
  Remaining: Unknown

Project: maven-ear-plugin
   Fix Fors:
 1.4
   Versions:
 1.2

   Assignee: 
   Reporter: Ryan Sonnek

Created: Thu, 2 Oct 2003 6:15 PM
Updated: Thu, 8 Jan 2004 5:33 PM

Description:
documentation states that the property ear.appxml.ear.context-root is used to set the 
context-root, when it is actually ear.appxml.war.context-root.


-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


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



[jira] Created: (MAVEN-1114) bootstrap should also look in $MBOOT_HOME and $HOME/mboot for mboot executable

2004-01-08 Thread jira
Message:

  A new issue has been created in JIRA.

-
View the issue:

  http://jira.codehaus.org/secure/ViewIssue.jspa?key=MAVEN-1114


Here is an overview of the issue:
-
Key: MAVEN-1114
Summary: bootstrap should also look in $MBOOT_HOME and $HOME/mboot for mboot 
executable
   Type: Improvement

 Status: Unassigned
   Priority: Minor

 Original Estimate: Unknown
 Time Spent: Unknown
  Remaining: Unknown

Project: maven
 Components: 
 core
   Fix Fors:
 1.1
   Versions:
 1.1

   Assignee: 
   Reporter: Brett Porter

Created: Thu, 8 Jan 2004 5:36 PM
Updated: Thu, 8 Jan 2004 5:36 PM

Description:
maven-core bootstrap.sh should look in the other known locations if not in the path.


-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


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



[jira] Closed: (MAVENUPLOAD-55) Update Open Symphony OSCache on Ibiblio

2004-01-08 Thread jira
Message:

   The following issue has been closed.

-
View the issue:

  http://jira.codehaus.org/secure/ViewIssue.jspa?key=MAVENUPLOAD-55


Here is an overview of the issue:
-
Key: MAVENUPLOAD-55
Summary: Update Open Symphony OSCache on Ibiblio
   Type: Improvement

 Status: Closed
   Priority: Minor
 Resolution: FIXED

 Original Estimate: Unknown
 Time Spent: Unknown
  Remaining: Unknown

Project: maven-upload-requests

   Assignee: dion gillard
   Reporter: Emmanuel Bourg

Created: Thu, 8 Jan 2004 5:47 AM
Updated: Thu, 8 Jan 2004 11:41 PM

Description:
The version 2.0.1 of OSCache is now available at :

https://oscache.dev.java.net/files/documents/629/1578/oscache-2.0.1.jar

The repository on Ibiblio has only the version 1.7.5


-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


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



cvs commit: maven/src/bootstrap/org/apache/maven Dependency.java BootstrapPomParser.java BootstrapTask.java

2004-01-08 Thread dion
dion2004/01/08 22:27:01

  Modified:src/bootstrap/org/apache/maven Tag: MAVEN-1_0-BRANCH
Dependency.java BootstrapPomParser.java
BootstrapTask.java
  Log:
  Code cleanup
  
  Revision  ChangesPath
  No   revision
  No   revision
  1.3.10.2  +3 -4  maven/src/bootstrap/org/apache/maven/Dependency.java
  
  Index: Dependency.java
  ===
  RCS file: /home/cvs/maven/src/bootstrap/org/apache/maven/Dependency.java,v
  retrieving revision 1.3.10.1
  retrieving revision 1.3.10.2
  diff -u -r1.3.10.1 -r1.3.10.2
  --- Dependency.java   7 Jan 2004 15:33:56 -   1.3.10.1
  +++ Dependency.java   9 Jan 2004 06:27:01 -   1.3.10.2
  @@ -101,8 +101,7 @@
   }
   
   /**
  - *
  - * @return
  + * @return the id attribute (groupId:artifactId)
*/
   public String getId()
   {
  @@ -194,7 +193,7 @@
   {
   return jar;
   }
  -
  +
   if ( isValid( getArtifactId() ) )
   {
   return getArtifactId() + - + getVersion() + . + getType();
  
  
  
  1.5.10.4  +24 -1 maven/src/bootstrap/org/apache/maven/BootstrapPomParser.java
  
  Index: BootstrapPomParser.java
  ===
  RCS file: /home/cvs/maven/src/bootstrap/org/apache/maven/BootstrapPomParser.java,v
  retrieving revision 1.5.10.3
  retrieving revision 1.5.10.4
  diff -u -r1.5.10.3 -r1.5.10.4
  --- BootstrapPomParser.java   7 Jan 2004 15:28:26 -   1.5.10.3
  +++ BootstrapPomParser.java   9 Jan 2004 06:27:01 -   1.5.10.4
  @@ -68,14 +68,20 @@
   import java.util.List;
   
   /**
  + * A class to parse the POM.
*/
   public class BootstrapPomParser
extends DefaultHandler
   {
  +/** the project dependencies */
   private ArrayList dependencies = new ArrayList();
  +/** current dependency being processed */
   private Dependency currentDependency;
  +/** factory to create a sax parser */
   private static SAXParserFactory saxFactory;
  +/** whether we're inside a dependency element during parsing */
   private boolean insideDependency = false;
  +/** text of the element being processed */
   private StringBuffer bodyText = new StringBuffer();
   
   /**
  @@ -87,6 +93,8 @@
   }
   
   /**
  + * Parse a POM
  + * @param project the project file to parse
*/
   public void parse(File project)
   {
  @@ -105,6 +113,10 @@
   
   /**
* Handles opening elements of the xml file.
  + * @param uri the uri being parsed
  + * @param localName element without namespace
  + * @param rawName element name
  + * @param attributes element attributes
*/
   public void startElement(String uri, String localName, String rawName, 
Attributes attributes)
   {
  @@ -116,13 +128,19 @@
   }
   
   /**
  - * Description of the Method
  + * some xml element text
  + * @param buffer the text found
  + * @param start the start position of text in the buffer
  + * @param length the length of the text in the buffer
*/
   public void characters(char[] buffer, int start, int length)
   {
   bodyText.append(buffer, start, length);
   }
   
  +/**
  + * @return the current text from the characters method
  + */
   private String getBodyText()
   {
   return bodyText.toString().trim();
  @@ -130,6 +148,9 @@
   
   /**
* Handles closing elements of the xml file.
  + * @param uri the uri being parsed
  + * @param localName element without namespace
  + * @param rawName element name
*/
   public void endElement(String uri, String localName, String rawName)
   {
  @@ -198,6 +219,8 @@
   
   /**
* Description of the Method
  + * @param type the type of error
  + * @param spe The parse exception that caused the callback to be invoked.
*/
   private final void printParseError(String type, SAXParseException spe)
   {
  
  
  
  1.20.2.2  +37 -25maven/src/bootstrap/org/apache/maven/BootstrapTask.java
  
  Index: BootstrapTask.java
  ===
  RCS file: /home/cvs/maven/src/bootstrap/org/apache/maven/BootstrapTask.java,v
  retrieving revision 1.20.2.1
  retrieving revision 1.20.2.2
  diff -u -r1.20.2.1 -r1.20.2.2
  --- BootstrapTask.java7 Jan 2004 15:33:56 -   1.20.2.1
  +++ BootstrapTask.java9 Jan 2004 06:27:01 -   1.20.2.2
  @@ -56,13 +56,6 @@
* 
*/
   
  -import org.apache.maven.util.HttpUtils;
  -import org.apache.tools.ant.BuildException;
  -import org.apache.tools.ant.Project;
  -import org.apache.tools.ant.Task;