[jira] Created: (MAVEN-565) ear plugin uses wrong variable to set context-root in descriptor

2003-07-14 Thread jira
Message:

  A new issue has been created in JIRA.

-
View the issue:

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


Here is an overview of the issue:
-
Key: MAVEN-565
Summary: ear plugin uses wrong variable to set context-root in descriptor
   Type: Bug

 Status: Unassigned
   Priority: Minor

 Time Spent: Unknown
  Remaining: Unknown

Project: maven
 Components: 
 plugin-other
   Versions:
 1.0-beta-10

   Assignee: 
   Reporter: Alwyn Schoeman

Created: Mon, 14 Jul 2003 1:51 AM
Updated: Mon, 14 Jul 2003 1:51 AM

Description:
The context-root element of the application.xml file is not generated correctly as 
plugin.jelly for the ear plugin uses the wrong variable for the context-root.

The script uses ear.appxml.ear.context-root.

It should be ear.appxml.war.context-root.

Also I seem to remember that the property maven.ear.appxml.generate is 
also incorrectly stated as maven.j2ee.ear.appxml.generate in the documentation. 


-
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: Bootstrap patch

2003-07-14 Thread Felipe Leme
OOPS, didn't send the patch from cvs :(

 Here it is:

[EMAIL PROTECTED]/cvs/maven-patched: cvs diff -u build-bootstrap.xml
Index: build-bootstrap.xml
===
RCS file: /home/cvspublic/maven/build-bootstrap.xml,v
retrieving revision 1.201
diff -u -r1.201 build-bootstrap.xml
--- build-bootstrap.xml 4 Jul 2003 22:43:13 -   1.201
+++ build-bootstrap.xml 14 Jul 2003 05:08:24 -
@@ -8,8 +8,12 @@
   property environment=env/
   property name=maven.home value=${env.MAVEN_HOME}/

+  target name=check-env description=Check if environment variables are 
set
+ echomaven.home = ${maven.home}/echo
+ fail unless=env.MAVEN_HOME message=You MUST set MAVEN_HOME first/
+  /target

-  target name=env depends=check-properties
+  target name=env depends=check-properties,check-env
echomaven.home = ${maven.home}/echo
echomaven.home.local = ${maven.home.local}/echo
echomaven.repo.local = ${maven.repo.local}/echo




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



[jira] Updated: (MAVEN-473) Upgrade or add plugin for AspectJ 1.1

2003-07-14 Thread jira
The following issue has been updated:

Updater: Maurice Montg?nie (mailto:[EMAIL PROTECTED])
   Date: Mon, 14 Jul 2003 9:03 AM
Comment:
Here is the updated aspectj plugin that i'm using for a while.
Changes:
 Attachment changed to maven-aspectj-1.1.1-src.zip
-
For a full history of the issue, see:

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

-
View the issue:

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


Here is an overview of the issue:
-
Key: MAVEN-473
Summary: Upgrade or add plugin for AspectJ 1.1
   Type: Improvement

 Status: Assigned
   Priority: Major

 Time Spent: Unknown
  Remaining: Unknown

Project: maven
 Components: 
 plugin-other
   Fix Fors:
 1.0-final

   Assignee: Jason van Zyl
   Reporter: Wes Isberg

Created: Tue, 10 Jun 2003 7:37 PM
Updated: Mon, 14 Jul 2003 9:03 AM

Description:
I'd like Maven to include support for the recently-released AspectJ 1.1.  In the 
run-up to Maven's RC1, I'd like to find a committer willing to incorporate the plugin 
fixes for AspectJ 1.1 that I documented in our Development Environment Guide section 
Ant support, subsection Maven support:

http://dev.eclipse.org/viewcvs/indextech.cgi/~checkout~/aspectj-home/doc/devguide/antTasks-maven.html

You can download AspectJ from 

   http://eclipse.org/aspectj

It contains the libraries to be published to the repository and the documentation.

Fair warning: I won't be available much before the Maven release candidate.  Up until 
tomorrow (Wed 11) afternoon, I'll be available off and on to support this upgrade.  
Sorry for not submitting a tested patch, but (modulo version naming issues) this 
should be a drop-in replacement and tests out fine on my machine.

At some point I'd really like to make a plugin that uses AspectJ 1.1's binary weaving, 
since this would fit better with many of the typical use-cases for AspectJ.  If 
someone is gung-ho to work on that in the near term, I'd be happy to share the build 
rules that I think would support most use-cases.



-
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/java/org/apache/maven MavenSession.java

2003-07-14 Thread jvanzyl
jvanzyl 2003/07/14 07:02:20

  Modified:src/java/org/apache/maven MavenSession.java
  Log:
  o Updating for the release
  
  Revision  ChangesPath
  1.13  +2 -2  maven/src/java/org/apache/maven/MavenSession.java
  
  Index: MavenSession.java
  ===
  RCS file: /home/cvs/maven/src/java/org/apache/maven/MavenSession.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- MavenSession.java 18 Jun 2003 02:48:08 -  1.12
  +++ MavenSession.java 14 Jul 2003 14:02:20 -  1.13
  @@ -101,7 +101,7 @@
   public static final String DRIVER_SCRIPT_NAME = driver.jelly;
   
   /** The current MavenSession version id */
  -public static final String APP_VERSION = 1.0-beta-10-SNAPSHOT;
  +public static final String APP_VERSION = 1.0-beta-10;
   
   // 
   // C L A S S  M E M B E R S
  
  
  

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



b10

2003-07-14 Thread Jason van Zyl
Hi,

If there are no objections within the next hour I will tag and release.

-- 
jvz.

Jason van Zyl
[EMAIL PROTECTED]
http://tambora.zenplex.org

In short, man creates for himself a new religion of a rational
and technical order to justify his work and to be justified in it.
  
  -- Jacques Ellul, The Technological Society


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



Re: b10

2003-07-14 Thread Incze Lajos
On Mon, Jul 14, 2003 at 04:21:47PM +0200, Siegfried Gschl wrote:
 Hi folks,
 
 did I miss Maven B9 or was this release dropped ?!
 
 Siegfried Goeschl
 CTO

You missed it. It's been out for monthes.

incze

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



Re: b10

2003-07-14 Thread Siegfried Goeschl
Sorry for seeming completely dumb but I was not following the MAVEN Mailing
Lists for a while but

+) http://jakarta.apache.org/builds/jakarta-turbine-maven/release/ only
shows Beta 8

+) Current Status says the Maven B9 is currently worked on

+) The link to http://cvs.apache.org/viewcvs/jakarta-turbine-maven/ is
broken

Cheers

Siegfried Goeschl

- Original Message - 
From: Incze Lajos [EMAIL PROTECTED]
To: Maven Developers List [EMAIL PROTECTED]
Sent: Monday, July 14, 2003 5:04 PM
Subject: Re: b10


 On Mon, Jul 14, 2003 at 04:21:47PM +0200, Siegfried Gschl wrote:
  Hi folks,
 
  did I miss Maven B9 or was this release dropped ?!
 
  Siegfried Goeschl
  CTO

 You missed it. It's been out for monthes.

 incze

 -
 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]



Re: b10

2003-07-14 Thread James Macgill
At 05:36 PM 7/14/2003 +0200, you wrote:
Sorry for seeming completely dumb but I was not following the MAVEN Mailing
Lists for a while but
+) http://jakarta.apache.org/builds/jakarta-turbine-maven/release/ only
shows Beta 8
Maven is now a top-level project on apache.

Update your links to start with:
http://maven.apache.org
James 

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


Re: b10

2003-07-14 Thread Siegfried Göschl
Oops, my fault was going to http://www.maven.org instead of
http://maven.apache.org

An utterly dumb

Siegfried Goeschl

On 14 Jul 2003 at 17:45, nicolas frank wrote:

 wahhhooo... I can see you did not follow maven news for a while... ;-)
 Now maven site is located at http://maven.apache.org, where you can
 find all you need.

 - Original Message -
 From: Siegfried Goeschl [EMAIL PROTECTED]
 To: Maven Developers List [EMAIL PROTECTED]
 Sent: Monday, July 14, 2003 5:36 PM
 Subject: Re: b10


  Sorry for seeming completely dumb but I was not following the MAVEN
 Mailing
  Lists for a while but
 
  +) http://jakarta.apache.org/builds/jakarta-turbine-maven/release/
  +only
  shows Beta 8
 
  +) Current Status says the Maven B9 is currently worked on
 
  +) The link to http://cvs.apache.org/viewcvs/jakarta-turbine-maven/
  +is
  broken
 
  Cheers
 
  Siegfried Goeschl
 
  - Original Message -
  From: Incze Lajos [EMAIL PROTECTED]
  To: Maven Developers List [EMAIL PROTECTED]
  Sent: Monday, July 14, 2003 5:04 PM
  Subject: Re: b10
 
 
   On Mon, Jul 14, 2003 at 04:21:47PM +0200, Siegfried G”schl wrote:
Hi folks,
   
did I miss Maven B9 or was this release dropped ?!
   
Siegfried Goeschl
CTO
  
   You missed it. It's been out for monthes.
  
   incze
  
   --
   --- 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]
 


 ---
 Outgoing mail is certified Virus Free.
 Checked by AVG anti-virus system (http://www.grisoft.com).
 Version: 6.0.480 / Virus Database: 276 - Release Date: 12/05/2003


 -
 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]



Re: [ibiblio request]: Caucho Hessian and Burlap

2003-07-14 Thread Luke Taylor
More precisely:

http://www.caucho.com/hessian/download/hessian-3.0.1.jar

http://www.caucho.com/hessian/download/burlap-2.1.7.jar

Luke.

--
 Luke Taylor.  Monkey Machine Ltd.
 PGP Key ID: 0x57E9523Chttp://www.monkeymachine.ltd.uk


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


[UPLOAD REQUEST] ecs-1.4.2

2003-07-14 Thread Henning P. Schmiedehausen
Hi,

please upload the ecs-1.4.2.jar from the jakarta ecs project.

You can fetch it here:

http://jakarta.apache.org/turbine/repo/ecs/jars/ecs-1.4.2.jar

This is directly from the binary distribution .tgz file.

Thanks
Henning


-- 
Dipl.-Inf. (Univ.) Henning P. Schmiedehausen  INTERMETA GmbH
[EMAIL PROTECTED]+49 9131 50 654 0   http://www.intermeta.de/

Java, perl, Solaris, Linux, xSP Consulting, Web Services 
freelance consultant -- Jakarta Turbine Development  -- hero for hire

--- Quote of the week: It is pointless to tell people anything when
you know that they won't process the message. --- Jonathan Revusky

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



Re: [UPLOAD REQUEST] ecs-1.4.2

2003-07-14 Thread Henning P. Schmiedehausen
bob mcwhirter [EMAIL PROTECTED] writes:

Thanks.


done.
   -bob

On Mon, 14 Jul 2003, Henning P. Schmiedehausen wrote:

 Hi,
 
 please upload the ecs-1.4.2.jar from the jakarta ecs project.
 
 You can fetch it here:
 
 http://jakarta.apache.org/turbine/repo/ecs/jars/ecs-1.4.2.jar
 
 This is directly from the binary distribution .tgz file.
 
  Thanks
  Henning
 
 
 -- 
 Dipl.-Inf. (Univ.) Henning P. Schmiedehausen  INTERMETA GmbH
 [EMAIL PROTECTED]+49 9131 50 654 0   http://www.intermeta.de/
 
 Java, perl, Solaris, Linux, xSP Consulting, Web Services 
 freelance consultant -- Jakarta Turbine Development  -- hero for hire
 
 --- Quote of the week: It is pointless to tell people anything when
 you know that they won't process the message. --- Jonathan Revusky
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 

--
Bob McWhirter[EMAIL PROTECTED]
The Werken Company   http://werken.com/


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

-- 
Dipl.-Inf. (Univ.) Henning P. Schmiedehausen  INTERMETA GmbH
[EMAIL PROTECTED]+49 9131 50 654 0   http://www.intermeta.de/

Java, perl, Solaris, Linux, xSP Consulting, Web Services 
freelance consultant -- Jakarta Turbine Development  -- hero for hire

--- Quote of the week: It is pointless to tell people anything when
you know that they won't process the message. --- Jonathan Revusky

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



[jira] Created: (MAVEN-566) added jetty support to the appserver plugin

2003-07-14 Thread jira
Message:

  A new issue has been created in JIRA.

-
View the issue:

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


Here is an overview of the issue:
-
Key: MAVEN-566
Summary: added jetty support to the appserver plugin
   Type: New Feature

 Status: Unassigned
   Priority: Minor

 Time Spent: Unknown
  Remaining: Unknown

Project: maven

   Assignee: 
   Reporter: Stephen Haberman

Created: Mon, 14 Jul 2003 1:15 PM
Updated: Mon, 14 Jul 2003 1:15 PM

Description:
I've patched the appserver plugin to support Jetty. Along with the diff of the 
plugin.jelly, I've also uploaded the .jelly extension file and two default 
configuration files to be placed in the plugin-resources directory (I couldn't do 'cvs 
add' and have them show up in the diff since I have an anonymous checkout).


-
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: (MAVEN-566) added jetty support to the appserver plugin

2003-07-14 Thread jira
The following comment has been added to this issue:

 Author: Stephen Haberman
Created: Mon, 14 Jul 2003 2:22 PM
   Body:
Okay, JIRA isn't letting me upload the files, so you can get the four files from:

http://sh1.beachead.com:82/maven-repo/appserver-jetty.zip

There is a patch file of the plugin.jelly, and then three files to add into 
src/plugin-resources.
-
View the issue:

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


Here is an overview of the issue:
-
Key: MAVEN-566
Summary: added jetty support to the appserver plugin
   Type: New Feature

 Status: Unassigned
   Priority: Minor

 Time Spent: Unknown
  Remaining: Unknown

Project: maven

   Assignee: 
   Reporter: Stephen Haberman

Created: Mon, 14 Jul 2003 1:15 PM
Updated: Mon, 14 Jul 2003 1:15 PM

Description:
I've patched the appserver plugin to support Jetty. Along with the diff of the 
plugin.jelly, I've also uploaded the .jelly extension file and two default 
configuration files to be placed in the plugin-resources directory (I couldn't do 'cvs 
add' and have them show up in the diff since I have an anonymous checkout).


-
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 project.xml

2003-07-14 Thread jvanzyl
jvanzyl 2003/07/14 14:29:40

  Modified:.project.xml
  Log:
  o Updating POM so that I can tag and release.
  
  Revision  ChangesPath
  1.285 +1 -1  maven/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/maven/project.xml,v
  retrieving revision 1.284
  retrieving revision 1.285
  diff -u -r1.284 -r1.285
  --- project.xml   11 Jul 2003 06:09:12 -  1.284
  +++ project.xml   14 Jul 2003 21:29:40 -  1.285
  @@ -4,7 +4,7 @@
 pomVersion3/pomVersion
 idmaven/id
 nameMaven/name
  -  currentVersion1.0-beta-10-SNAPSHOT/currentVersion
  +  currentVersion1.0-beta-10/currentVersion
 organization
   nameApache Software Foundation/name
   urlhttp://jakarta.apache.org//url
  
  
  

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



cvs commit: maven project.xml

2003-07-14 Thread jvanzyl
jvanzyl 2003/07/14 14:51:20

  Modified:.project.xml
  Log:
  o The show continues.
  
  Revision  ChangesPath
  1.286 +6 -1  maven/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/maven/project.xml,v
  retrieving revision 1.285
  retrieving revision 1.286
  diff -u -r1.285 -r1.286
  --- project.xml   14 Jul 2003 21:29:40 -  1.285
  +++ project.xml   14 Jul 2003 21:51:20 -  1.286
  @@ -4,7 +4,7 @@
 pomVersion3/pomVersion
 idmaven/id
 nameMaven/name
  -  currentVersion1.0-beta-10/currentVersion
  +  currentVersion1.0-beta-11-SNAPSHOT/currentVersion
 organization
   nameApache Software Foundation/name
   urlhttp://jakarta.apache.org//url
  @@ -77,6 +77,11 @@
   version
 idb10/id
 name1.0-beta-10/name
  +  tagMAVEN_1_0_B10/tag
  +/version
  +version
  +  idb11/id
  +  name1.0-beta-11/name
 tagHEAD/tag
   /version
 /versions
  
  
  

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



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

2003-07-14 Thread jvanzyl
jvanzyl 2003/07/14 14:53:32

  Modified:src/java/org/apache/maven MavenSession.java
  Log:
  o Moving on.
  
  Revision  ChangesPath
  1.14  +2 -2  maven/src/java/org/apache/maven/MavenSession.java
  
  Index: MavenSession.java
  ===
  RCS file: /home/cvs/maven/src/java/org/apache/maven/MavenSession.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- MavenSession.java 14 Jul 2003 14:02:20 -  1.13
  +++ MavenSession.java 14 Jul 2003 21:53:32 -  1.14
  @@ -101,7 +101,7 @@
   public static final String DRIVER_SCRIPT_NAME = driver.jelly;
   
   /** The current MavenSession version id */
  -public static final String APP_VERSION = 1.0-beta-10;
  +public static final String APP_VERSION = 1.0-beta-11-SNAPSHOT;
   
   // 
   // C L A S S  M E M B E R S
  
  
  

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



cvs commit: maven/xdocs/start download.xml

2003-07-14 Thread jvanzyl
jvanzyl 2003/07/14 15:03:07

  Modified:xdocs/start download.xml
  Log:
  o changing version
  
  Revision  ChangesPath
  1.14  +1 -1  maven/xdocs/start/download.xml
  
  Index: download.xml
  ===
  RCS file: /home/cvs/maven/xdocs/start/download.xml,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- download.xml  9 Apr 2003 02:40:57 -   1.13
  +++ download.xml  14 Jul 2003 22:03:07 -  1.14
  @@ -14,7 +14,7 @@
   a tar/gzipped install archive and a zipped install archive. Each of
   the install archives contains everything that Maven needs to run and a set 
   of core plug-ins that provide some basic functionality. You can find the 
install archives
  -a href=http://maven.apache.org/builds/release/1.0-beta-9/;here/a.
  +a href=http://maven.apache.org/builds/release/1.0-beta-10/;here/a.
 /p
 
   /section
  
  
  

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



[jira] Commented: (MAVEN-401) Release maven-b10

2003-07-14 Thread jira
The following comment has been added to this issue:

 Author: Brett Porter
Created: Tue, 15 Jul 2003 12:53 AM
   Body:
should this be closed and the remaining issues unlinked and targetted at RC1?

BTW, I am about to submit a patch for MAVEN-470 that rounds it out.
-
View the issue:

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


Here is an overview of the issue:
-
Key: MAVEN-401
Summary: Release maven-b10
   Type: Task

 Status: Unassigned
   Priority: Major

 Time Spent: Unknown
  Remaining: 0 minutes

Project: maven
 Components: 
 release
   Versions:
 1.0-beta-10

   Assignee: 
   Reporter: Ben Walding

Created: Thu, 17 Apr 2003 4:49 AM
Updated: Fri, 4 Jul 2003 9:04 AM

Description:
This is a tracking issue for Beta 10.

All issues that should be fixed for Beta 10 should be attached to this issue with the 
linking function.


(I am doing this as a trial. Don't think I'm trying to force some old school 
changemanagement on you)


-
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-567) ClassNotFoundException: velocity after clearing local repo

2003-07-14 Thread jira
Message:

  A new issue has been created in JIRA.

-
View the issue:

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


Here is an overview of the issue:
-
Key: MAVEN-567
Summary: ClassNotFoundException: velocity after clearing local repo
   Type: Bug

 Status: Unassigned
   Priority: Minor

 Time Spent: Unknown
  Remaining: Unknown

Project: maven
   Versions:
 1.0-beta-10

   Assignee: 
   Reporter: Brett Porter

Created: Tue, 15 Jul 2003 1:11 AM
Updated: Tue, 15 Jul 2003 1:11 AM

Description:
situation: clearing out the local repository (rm -rf ~/.maven/repository, and also if 
you delete all the plugins by rm -rf ~/.maven).

Obviously, this is also the case for a new install.

First run of maven on maven itself (and presumably other projects), causes:

ClassNotFoundException: velocity
...

Second run works, as velocity was downloaded in the first run.

I'm imagining this will be fixed in the great pluginmanager refactoring, but filing 
issue to verify. This issue has also been raised on the -user list.


-
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]