RE: Creating WAR for Websphere

2004-08-31 Thread Matt Read
I've successfully built a WAR using the normal mechanism and deployed it to to WAS5.1. There were no variations to the directory structure. Matt. -Original Message- From: jeff mutonho [mailto:[EMAIL PROTECTED] Sent: 30 August 2004 10:37 To: Maven Users List Subject: Re: Creating

RE: Maven WebSphere 5.0/5.1 plugin release

2004-08-17 Thread Matt Read
, 16 Aug 2004 16:25:42 +0100, Matt Read [EMAIL PROTECTED] wrote: Is anyone intending to add support for deployment of standalone WARs using this plugin any time soon? Not that I know of. If you have a need I can help with the implementation. -- http://www.multitask.com.au/people/dion

RE: Maven WebSphere 5.0/5.1 plugin release

2004-08-17 Thread Matt Read
That worked great for me! Thanks very much for the help. Matt. -Original Message- From: Dion Gillard [mailto:[EMAIL PROTECTED] Sent: 17 August 2004 15:12 To: Maven Users List Subject: Re: Maven WebSphere 5.0/5.1 plugin release Matt, to install the struts documentation war, I

RE: Maven WebSphere 5.0/5.1 plugin release

2004-08-17 Thread Matt Read
it must exist in the given location on the remote machine. So, it needs to be copied to either that machine, or a shared resource. On Tue, 17 Aug 2004 16:08:18 +0100, Matt Read [EMAIL PROTECTED] wrote: Except when I try the same thing on a remote host when I get the following

RE: Maven WebSphere 5.0/5.1 plugin release

2004-08-17 Thread Matt Read
, 17 Aug 2004 16:42:19 +0100, Matt Read [EMAIL PROTECTED] wrote: So it won't upload the .war/.ear as as is possible via the admin console? -Original Message- From: Dion Gillard [mailto:[EMAIL PROTECTED] Sent: 17 August 2004 16:35 To: Maven Users List Subject: Re

RE: Maven WebSphere 5.0/5.1 plugin release

2004-08-16 Thread Matt Read
Is anyone intending to add support for deployment of standalone WARs using this plugin any time soon? Matt. -Original Message- From: Dion Gillard [mailto:[EMAIL PROTECTED] Sent: 28 July 2004 16:24 To: Maven Users List Subject: Maven WebSphere 5.0/5.1 plugin release The

RE: History/trends in reports

2004-08-04 Thread Matt Read
:38 +0100, Matt Read [EMAIL PROTECTED] wrote: A lot later than promised and still not quite as neat as I wanted it to be: http://mavenhistorical.sourceforge.net Matt. -Original Message- From: Morris, Jason [IT] [mailto:[EMAIL PROTECTED] Sent: 19 July 2004 15

RE: History/trends in reports

2004-08-03 Thread Matt Read
: 19 July 2004 13:33 To: Maven Users List Subject: RE: History/trends in reports On Mon, 2004-07-19 at 11:52 +0100, Matt Read wrote: A colleague and I are actually working on a plugin right now to do this, the default setup will plot a graph of total tests and %age passing tests over

RE: site:sshdeploy problem

2004-08-02 Thread Matt Read
confirm this later. Has anybody else come across anything similar? Thanks, Matt. _ From: Matt Read Sent: 02 August 2004 14:32 To: 'Maven Users List' Subject: site:sshdeploy problem I'm getting a lot of this when I use the sshdeploy target. The result is an incomplete deployment

RE: test dependency in war goal

2004-07-28 Thread Matt Read
How about: maven.test.failure.ignore=true ? -Original Message- From: March, Andres [mailto:[EMAIL PROTECTED] Sent: 28 July 2004 17:30 To: Maven Users List Subject: test dependency in war goal I have read the archive about people who wanted to bypass tests in certain goals

RE: developer activity plugin

2004-07-26 Thread Matt Read
Also, if you're getting file activity data in your report but not developer activity then check that the developer tags have ids corresponding to CVS ids in your project.xml. Matt. -Original Message- From: Dennis Lundberg [mailto:[EMAIL PROTECTED] Sent: Monday, July 26, 2004 19:52 To:

RE: History/trends in reports

2004-07-19 Thread Matt Read
A colleague and I are actually working on a plugin right now to do this, the default setup will plot a graph of total tests and %age passing tests over time. Data is stored in a JDBC datasource and data to be captured is currently specified as an filename and an xpath to the data to gather. Graphs

RE: [test coverage] jcoverage and cactus tests

2004-07-16 Thread Matt Read
I had a similar problem that I could only solve by manually modifying the clover plugin. In my case I was trying to instrument code that was compiled into a .war and deployed to an appserver. I raised a JIRA item to cover it here but no movement yet: http://jira.codehaus.org/browse/MPCLOVER-18

RE: [test coverage] jcoverage and cactus tests

2004-07-16 Thread Matt Read
You might need to ensure that the instrumented Cactus tests are the same ones that are being used in the Cactified .war file. E.g. maven.clover.build.classes = ${maven.build.dir}/classes -Original Message- From: Raphaël Piéroni [mailto:[EMAIL PROTECTED] Sent: 16 July 2004 10:41 To:

RE: Reports

2004-07-16 Thread Matt Read
Try: reportmaven-junit-report-plugin/report -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 16 July 2004 12:45 To: [EMAIL PROTECTED] Subject: Reports I want to set up my projects to only run a sub-set of the default reports when doing the site

RE: Maven with Clear Case

2004-07-09 Thread Matt Read
Assuming you're using snapshot views and you're running your build from within your local view then you can start using Clearcase by changing the following in project.xml: repository connectionscm:cvs:pserver:[EMAIL PROTECTED]:/opt/cvsroot:some_project/conne ction /repository to

RE: Maven with Clear Case

2004-07-09 Thread Matt Read
the 8 character user name issue is still unresolved in MPCHANGELOG-36. Is this right? On Fri, 9 Jul 2004 12:16:16 +0100, Matt Read [EMAIL PROTECTED] wrote: Assuming you're using snapshot views and you're running your build from within your local view then you can start using Clearcase

RE: Maven CruiseControl

2004-07-06 Thread Matt Read
You also have to explicitly merge the .xml test results into the cruisecontrol log, e.g. log dir=logs/my_project merge dir=target/test-reports / /log -Original Message- From: STRAYER, JON (SBCSI) [mailto:[EMAIL PROTECTED] Sent: 06 July 2004 16:26 To: 'Maven Users List'

RE: Need to load common goals from sub-projects maven.xml

2004-07-01 Thread Matt Read
Thanks for the insight, it all makes sense and as a Maven user I fully support the principle of putting control of the cross-cutting in the hands of the user. I'm still interested to know the answers to the following in the context of Maven 1.0: 1. Does maven.xml inheritance currently only

RE: Need to load common goals from sub-projects maven.xml

2004-06-30 Thread Matt Read
From: Maczka Michal [mailto:[EMAIL PROTECTED] From: Stefanutti, Mario [mailto:[EMAIL PROTECTED] Hi, I looking for a way to set some common goals for each sub-project of a multiproject environment. Simple soluton: create your own plugin. It is super simple (example can be

RE: Need to load common goals from sub-projects maven.xml

2004-06-30 Thread Matt Read
From: Maczka Michal [mailto:[EMAIL PROTECTED] From: Matt Read [mailto:[EMAIL PROTECTED] From: Maczka Michal [mailto:[EMAIL PROTECTED] From: Stefanutti, Mario [mailto:[EMAIL PROTECTED] Hi, I looking for a way to set some common goals for each sub-project

RE: Need to load common goals from sub-projects maven.xml

2004-06-30 Thread Matt Read
From: Maczka Michal [mailto:[EMAIL PROTECTED] No! preGoals should not be used by plugins. Ok, so these aren't behaving themselves? cache\maven-antlr-plugin-1.2\plugin.jelly(59): preGoal name=java:compile cache\maven-antlr-plugin-1.2\plugin.jelly(63): /preGoal

RE: RFE for the war plugin

2004-06-29 Thread Matt Read
What problems do you have with Eclipse? I do exactly this across a project with many components which are re-used in various combinations of .ear and .war files using the Maven dependency mechanism and have no problems at all using Eclipse as my IDE. Matt. -Original Message- From:

RE: RFE for the war plugin

2004-06-29 Thread Matt Read
more support and remove some of the roadblocks (for me at least) you have to target the agile folks; we are an agile shop but its they are who are the ones bulking even though Maven fits right into agile practice. - Brill Pappin Matt Read wrote: What problems do you have with Eclipse

RE: Multiproject:site OutOfMemory

2004-06-23 Thread Matt Read
from your computer system. -Original Message- From: Matt Read [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 22, 2004 5:56 AM To: 'Maven Users List' Subject: RE: Multiproject:site OutOfMemory 3. I seem to have temporarily resolved my issue by doing the following

RE: Multiproject:site OutOfMemory

2004-06-22 Thread Matt Read
3. I seem to have temporarily resolved my issue by doing the following but my susispicion is that it will come back as my codebase grows. a) disabling all JDepend reports (I've had lots of problems with OutOfMemory errors and Jdepend runnning from Ant in the past)

RE: Multiproject:site OutOfMemory

2004-06-17 Thread Matt Read
[mailto:[EMAIL PROTECTED] Sent: 17 June 2004 08:16 To: Maven Users List Subject: Re: Multiproject:site OutOfMemory Matt, do you have any detail to add to the report? What is the exact failure, what have you set for MAVEN_OPTS etc? On Wed, 16 Jun 2004 17:31:25 +0100, Matt Read [EMAIL PROTECTED

RE: Multiproject:site OutOfMemory

2004-06-17 Thread Matt Read
See inline responses... -Original Message- From: Dion Gillard [mailto:[EMAIL PROTECTED] Sent: 17 June 2004 11:05 To: Maven Users List Subject: Re: Multiproject:site OutOfMemory On Thu, 17 Jun 2004 10:57:34 +0100, Matt Read [EMAIL PROTECTED] wrote: It depends what kind

RE: Multiproject:site OutOfMemory

2004-06-17 Thread Matt Read
/coolstuff/jvmstat (the one that ships with JDK 1.5 is pretty nice). The Sun memory profiler will let you look at others areas besides heap, so I would recommend starting there. Dion Gillard wrote: On Thu, 17 Jun 2004 13:24:56 +0100, Matt Read [EMAIL PROTECTED] wrote: Are the unit

Multiproject:site OutOfMemory

2004-06-16 Thread Matt Read
http://jira.codehaus.org/browse/MAVEN-1294 http://jira.codehaus.org/browse/MAVEN-1294 Could anyone comment on the above defect or suggest resolutions or work-arounds? I'm having the same problem as many seem to have reported (currently with RC3) and it's driving me mad. I'm running