Re: svn commit: r422314 - in /maven/sandbox/plugins/maven-changes-plugin/src/main/java/org/apache/maven: announcement/JiraAnnouncementDownloader.java jira/JiraDownloader2.java jira/JiraHelper.java

2006-07-16 Thread Trygve Laugstøl
[EMAIL PROTECTED] wrote: Author: dennisl Date: Sat Jul 15 16:06:35 2006 New Revision: 422314 URL: http://svn.apache.org/viewvc?rev=422314&view=rev Log: Refactor a JIRA helper method into a helper class, so it can be used from the announcement mojo as well This sounds like something that shoul

Re: [jira] Closed: (MNG-2440) NPE during bootstrap

2006-07-16 Thread Brett Porter
I'm confused. - I didn't see this NPE after fixing the related issue, without the patch - I didn't see this patch actually committed but the issue says it was. Did I just miss the mail? Thanks, Brett On 15/07/2006 11:25 AM, John Casey (JIRA) wrote: [ http://jira.codehaus.org/browse/MNG-

Re: Are @parameter in non-AbstractMojo parsed?

2006-07-16 Thread Edwin Punzalan
IIRC, you can either extend Abstract or implement Mojo. Jimisola Laursen wrote: Hi! I have some problems with the the expression attribute to the parameter tag. Are @parameter tags only processed when they exist in a Mojo (extends AbstractMojo)? My mojo (MyMojo) has a bean (MyBean). MyCfgBe

Re: [proposal] toolchain support for Maven 2.1

2006-07-16 Thread Brett Porter
Thanks Nathan. This is exactly what I was getting at (and the reasons for it), but this is a lot more detail than what I wrote down. So, just to make sure I understand, it would work something like this: - JDK definitions are built in, and specify the location of executables, a particular type

Re: Who can deploy what, when and how?

2006-07-16 Thread Brett Porter
On 17/07/2006 6:09 AM, Dennis Lundberg wrote: Hi all Since I'm new here as a committer, I have a couple of questions regarding deployment. 1. The main Maven site Is any committer allowed to deploy (or publish) the site at any time? What's the procedure for doing that? Do you just check out

Re: Who can deploy what, when and how?

2006-07-16 Thread Jesse Kuhnert
I have no idea what the various policies are or even if I'm correct about the functionality, but the following pom works for me deploying snapshot builds. http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/pom.xml?view=markup I think the combination of having a distributionManagement section

Re: Archetype naming conventions

2006-07-16 Thread Brett Porter
On 16/07/2006 1:51 AM, Wendy Smoak wrote: For example, I have struts-archetype-blank and struts2-archetype-starter. These sound right to me. Since conventions are so important to Maven, it would be nice for the guide to creating archetypes [1] to offer some advice on naming. Is there a part

Re: [proposal] toolchain support for Maven 2.1

2006-07-16 Thread Wendell Beckwith
I would strongly favor this approach as it has fixed issues with our projects where we now just specify the execution environment to be java 1.4and 5.0 and individuals can use different maintenance versions of Sun's java 5 jdk as well as some of the diagnostics in BEA's jrockit 5.0 jdk without cha

Re: maven-2.0.5-SNAPSHOT is required to generate site for any apache's plugin

2006-07-16 Thread Dennis Lundberg
dan tran wrote: Hi I attempted to do maven site on latest source of maven-source-plugin, maven-javadoc-plugin, both throw [ERROR] BUILD ERROR [INFO] [INFO] Error resolving version for ' org.apache.maven.plugins:maven-plugin

Re: [M1] maven-eclipse-plugin 1.11 creates phantom sources attachement

2006-07-16 Thread Arnaud HERITIER
Yes a SNAPSHOT is now available. maven plugin:download -DgroupId=maven -DartifactId=maven-eclipse-plugin** -Dversion=*1.11.1*-SNAPSHOT -Dmaven.repo.remote=http://www.ibiblio.org/maven,http://people.apache.org/repository/ Arnaud On 7/12/06, Nicolas De Loof <[EMAIL PROTECTED]> wrote: I've foun

maven-2.0.5-SNAPSHOT is required to generate site for any apache's plugin

2006-07-16 Thread dan tran
Hi I attempted to do maven site on latest source of maven-source-plugin, maven-javadoc-plugin, both throw [ERROR] BUILD ERROR [INFO] [INFO] Error resolving version for ' org.apache.maven.plugins:maven-plugin-plugin ': Plugin

Re: Please review the documentation for the maven-changes-plugin

2006-07-16 Thread Dennis Lundberg
dan tran wrote: introduction page, http://people.apache.org/~dennisl/maven-changes-plugin/announcement-email.html is not available. -D Thanks, I committed fix for it. -- Dennis Lundberg On 7/16/06, Dennis Lundberg <[EMAIL PROTECTED]> wrote: Hi all I have finished going over the d

Who can deploy what, when and how?

2006-07-16 Thread Dennis Lundberg
Hi all Since I'm new here as a committer, I have a couple of questions regarding deployment. 1. The main Maven site Is any committer allowed to deploy (or publish) the site at any time? What's the procedure for doing that? Do you just check out the latest from svn and do: mvn site-deplo

Re: Please review the documentation for the maven-changes-plugin

2006-07-16 Thread dan tran
dont know how important it is interm of review but conbertura, test source xref, source xref, javadoc reports are empty (blank) -D On 7/16/06, dan tran <[EMAIL PROTECTED]> wrote: introduction page, http://people.apache.org/~dennisl/maven-changes-plugin/announcement-email.html is not avai

Re: Please review the documentation for the maven-changes-plugin

2006-07-16 Thread dan tran
introduction page, http://people.apache.org/~dennisl/maven-changes-plugin/announcement-email.html is not available. -D On 7/16/06, Dennis Lundberg <[EMAIL PROTECTED]> wrote: Hi all I have finished going over the documentation for the maven-changes-plugin. Please take a moment and read thr

Re: HTTP compression (http://jira.codehaus.org/browse/WAGON-55)

2006-07-16 Thread Carlos Sanchez
AFAIK there are also servlet filters that will do the encoding transparently, appfuse uses them iirc On 7/16/06, Nathan Beyer <[EMAIL PROTECTED]> wrote: Hello Eric, That was it. It seems the ResourceHandler will look for the resource as with a ".gz" and just streams that. So if you request "hel

Re: location of maven-changes-plugin?

2006-07-16 Thread Jesse Kuhnert
Ah ok, thank you. (I suppose a snapshot build isn't quite warrented yet? ) On 7/16/06, Dennis Lundberg <[EMAIL PROTECTED]> wrote: Jesse Kuhnert wrote: > Maybe I am jumping the gun a bit, but is there a known location for the > maven-changes-plugin? I've checked and can't seem to find it on > mo

RE: [proposal] toolchain support for Maven 2.1

2006-07-16 Thread Nathan Beyer
> -Original Message- > From: Brett Porter [mailto:[EMAIL PROTECTED] > > Some things to note about targeting a different JDK: > * rt.jar is not enough - JDKs provide a number of other classes in extra > libraries, and it isn't called rt.jar on some platforms. In fact, this actually vari

RE: HTTP compression (http://jira.codehaus.org/browse/WAGON-55)

2006-07-16 Thread Nathan Beyer
Hello Eric, That was it. It seems the ResourceHandler will look for the resource as with a ".gz" and just streams that. So if you request "hello.txt" and "hello.txt.gz" is on the server, it will send it back with Content-Encoding: gzip in the response header. -Nathan > -Original Message-

Re: location of maven-changes-plugin?

2006-07-16 Thread Dennis Lundberg
Jesse Kuhnert wrote: Maybe I am jumping the gun a bit, but is there a known location for the maven-changes-plugin? I've checked and can't seem to find it on mojo/snapshots/main dist. If you want to use the plugin without building it yourself from SVN then you can just use this in your pom:

location of maven-changes-plugin?

2006-07-16 Thread Jesse Kuhnert
Maybe I am jumping the gun a bit, but is there a known location for the maven-changes-plugin? I've checked and can't seem to find it on mojo/snapshots/main dist. -- Jesse Kuhnert Tacos/Tapestry, team member/developer Open source based consulting work centered around dojo/tapestry/tacos/hivemind.

Please review the documentation for the maven-changes-plugin

2006-07-16 Thread Dennis Lundberg
Hi all I have finished going over the documentation for the maven-changes-plugin. Please take a moment and read through it. This is what I have done: [MCHANGES-38] - All images in the report are broken. [MCHANGES-40] - Documentation of changes plugin should be improved [MCHANGES-41] - documen