RE: Trademark Symbol in Site Documentation

2007-04-11 Thread Kevin Menard
 -Original Message-
 From: Dirk Starke [mailto:[EMAIL PROTECTED] 
 Sent: Monday, November 06, 2006 5:11 PM
 To: users@maven.apache.org
 Subject: Trademark Symbol in Site Documentation
 
 Hello,
 
 I would like to have a TM symbol in my maven generated 
 website. Is there any way to get it out of APF?
 Thank you in advance.


Dunno.  I'm trying to get a registered trademark symbol in myself.  I
can get it to view fine locally, but now when I deploy.  It looks like
the site processor embeds the character directly into the document,
rather than using the HTML entity code.  That's all well and good, but
it also generates a Content-Type with a charset that doesn't contain the
special characters it has embedded.

If I manage to wrangle this somehow, I'll let you know.  If not, I guess
I'll just have funny looking question marks on my site.

-- 
Kevin

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



[ANN] maven-jython-plugin 0.1

2007-04-11 Thread Kevin Menard
Hi,

I'm pleased to announce the first public release of the
maven-jython-plugin for the maven 2 project management system.  The
purpose of this plugin is to make working with Jython source files as
natural as working with Java source files in a project.  Being an
initial release, we're still a ways off from that, but we do have some
nifty stuff working.

Official announcement:
http://dev.servprise.com/weblog/articles/2007/04/11/announcing-the-first
-release-of-the-maven-jython-plugin

Official project page:
http://dev.servprise.com/maven-jython-plugin/

Please note that this is not an official plugin, but rather one
developed by a third party.  The sources are being made available under
the ASLv2, however.

Kevin Menard
Servprise International, Inc.
800.832.3823 x308 

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



Create new Java process

2007-03-22 Thread Kevin Menard
Is there a maven analog to ant's org.apache.tools.ant.taskdefs.Java,
which is used to easily spawn new java processes?  I realize
ProcessBuilder could be used, but it can be a little terse for this
fairly common case.

Thanks,
Kevin

Kevin Menard
Servprise International, Inc.
800.832.3823 x308 

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



Modfy classpath

2006-12-03 Thread Kevin Menard
Hi,

I'm working on a Maven plugin and need to modify the classpath.  It
appears that maven runs the plugin with all of its dependencies, but the
plugin itself can't see them.  The only classpath entry I have is
C:\dev\maven\core\boot\classworlds-1.1.jar.

Any help would be appreciated.  My guess is that I just don't understand
what maven is doing.  All I want is one is the plugin's dependencies to
appear under the system classpath.

Thanks,
Kevin

-- 
Kevin Menard
Servprise International
WebReboot -- Remote Reboot Without Pulling the Plug
800.832.3823


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



RE: moving maven local .m2 repository

2006-11-03 Thread Kevin Menard
Create ~/.m2/settings.xml and add the following to that file:

settings
   localRepositoryc:\dev\m2repo/localRepository
/settings

Of course, adjust the path appropriately.

-- 
Kevin Menard
Servprise International
WebReboot -- Remote Reboot Without Pulling the Plug
800.832.3823

 -Original Message-
 From: Mick Knutson [mailto:[EMAIL PROTECTED]
 Sent: Friday, November 03, 2006 12:07 PM
 To: maven
 Subject: moving maven local .m2 repository
 
 How do I move the .m2 local repository to a different location
 
 --
 
 Thanks
 
 DJ MICK
 http://www.djmick.com
 http://www.myspace.com/mickknutson

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



VPP and Maven2

2006-11-02 Thread Kevin Menard
Hi,

I'm looking to port an ant task that relies on VPP to a maven2 plugin.
Unfortunately, it looks like VPP relies pretty heavily on ant itself,
requiring an org.apache.tools.ant.Project instance to even get
configured.  So, does anyone know of any efforts to port VPP to maven2
or is there any facility for a maven2 plugin to disguise itself as an
ant Task instance?

Thanks,
Kevin

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



RE: Problem using Maven2 eclipse plugin

2006-10-24 Thread Kevin Menard
Thanks Wayne.  After more digging, it appears in my case, I have Sun to
blame.

http://access1.sun.com/cgi-bin/rinfo2html?354930.faq

It just turns out I didn't run into the problem until trying to use
maven.

-- 
Kevin

 -Original Message-
 From: Wayne Fay [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, October 24, 2006 12:18 AM
 To: Maven Users List
 Subject: Re: Problem using Maven2 eclipse plugin
 
 Related thread on UNC path issues:
 From: [EMAIL PROTECTED]
 To: users@maven.apache.org
 Date: Sep 26, 2006 8:23 AM
 Subject: Maven2 and Network Shares
 
 Also  http://jira.codehaus.org/browse/MNG-2580
 
 Wayne

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



RE: Problem using Maven2 eclipse plugin

2006-10-23 Thread Kevin Menard
 -Original Message-
 From: Tom Hurley [mailto:[EMAIL PROTECTED]
 Sent: Monday, October 23, 2006 4:53 PM
 To: Maven Users List
 Subject: RE: Problem using Maven2 eclipse plugin
 
 Nicolas:
 
 I found this link on the MyEclipse User List
([EMAIL PROTECTED])
 and it fixed that problem for me.
 
 http://jira.codehaus.org/browse/MNGECLIPSE-124
 
 Tom.

After reading that, I dug into the issue a bit more, since I just
started seeing it.  It looks to me that paths might not being resolved
properly in maven itself.  I recently joined a Windows domain with this
machine and we employ folder redirection.  Running mvn -X package on
one project, I see the following:

[DEBUG] Building Maven user-level plugin registry from:
'C:\aristotle\Users\kmenard\.m2\plugin-registry.xml'

Note that the server name is aristotle and the UNC path is
\\aristotle\Users\kmenard.  So, it looks to me like there's some weird,
broken resolution that's going on.

I'm trying to see what else I can find, but that may be somehow related.

-- 
Kevin


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



Plugin classpath issue

2006-09-30 Thread Kevin Menard

Hi,

I'm working on a plugin that I'd like to have invoked from the CLI, much 
like the jetty plugin.  I'm having difficulty in getting the classpath 
to work out the way I'd like though.  I have a dependency listed and can 
use classes from that dependency, but transitive dependencies don't seem 
to be working.  So, while I can use classes in my own dependency list, 
they can't use anything from their subsequent dependencies.  I've tried 
using @requiresDependencyResolution, but that didn't help.


Any advice would be much appreciated.

Thanks,
Kevin


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



Packaged webapp

2006-07-27 Thread Kevin Menard
Hi all,

I have a Web app project that builds to a WAR just fine.  What I'd like to
do is also package it with a Tomcat bundle.  This way, I can provide a
single ZIP with everything necessary to run the Web app.

Does anyone have any experience doing this with maven?  Any pointers for me?

Thanks,
Kevin


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



Alter package lifecycle

2006-06-25 Thread Kevin Menard

Hi,

I'd like to defer the running of my tests until after my WAR has been  
built.  How do I go about changing the package lifecycle?  I've scoured  
the book and the Web, and thus far I haven't been able to find anything.   
So, any guidance would be greatly appreciated.


Thanks,
Kevin

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



Re: Alter package lifecycle

2006-06-25 Thread Kevin Menard
On Sun, 25 Jun 2006 21:47:37 -0400, Alexandre Poitras  
[EMAIL PROTECTED] wrote:



You can't do that. What is your use case?

*The only possible solution I could see is to link a goal to a
lifecycle phase but I think it would be better to tell us your needs
first.


I have a set of tests that test my Web app using HTMLunit.  In order to  
test the pages, the WAR must already be built.  So, it'd be beneficial to  
package first, then run the tests afterward.


--
Kevin

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



Using jetty6 plugin for tests?

2006-06-25 Thread Kevin Menard

Hi,

Traditionally for testing my webapp, I've started up an embedded jetty  
server instance to serve the pages.  While this generally works (some  
classpath trickery has to happen for HiveMind), it seems that the jetty6  
plugin would obviate the need for this.  Unfortunately, it looks like the  
remainder of the lifecycle blocks until the jetty6 plugin halts  
execution.  So, is there anyway to start up the server and run my tests,  
short of using two different maven instances?


Thanks,
Kevin

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



Re: Using jetty6 plugin for tests?

2006-06-25 Thread Kevin Menard

On Sun, 25 Jun 2006 23:44:42 -0400, Wendy Smoak [EMAIL PROTECTED] wrote:



This actually isn't the recommended way to do it, since if the tests
fail, Cargo never gets a chance to stop the container.  Better is to
use the Java API in a TestSetup class that wraps your tests.  There's
an example of that, here:
  http://cargo.codehaus.org/Functional+testing


Thanks a lot.  This looks similar to what I'm doing now, but may shield me  
from my classpath woes.  I'll give it a go tomorrow.


--
Kevin



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