Re: [ANN] Maven Surefire Plugin 2.4.1 for Maven 2 Released

2008-02-07 Thread Donnchadh Ó Donnabháin
[EMAIL PROTECTED] wrote: On Today at 3:30pm, DD=Donnchadh Ó Donnabháin [EMAIL PROTECTED] wrote: DD Hi Dan, DD DD When I switch from surefire 2.4 to 2.4.1 I get the error below. DD /tmp/surefirebooter22682.jar doesn't seem to even exist. Any idea what DD might be causing this? DD Not knowing

Re: [ANN] Maven Surefire Plugin 2.4.1 for Maven 2 Released

2008-02-07 Thread Donnchadh Ó Donnabháin
Hi Dan, When I switch from surefire 2.4 to 2.4.1 I get the error below. /tmp/surefirebooter22682.jar doesn't seem to even exist. Any idea what might be causing this? Thanks Donnchadh [INFO] Surefire report directory: /home/donnchadh/projects/ ... /target/surefire-reports Failed to

overlaid war files and timestamps

2007-04-17 Thread Donnchadh Ó Donnabháin
In Better Builds with Maven, it says: If you add a dependency on a WAR, then the WAR you generate will be overlaid with the content of that dependent WAR, allowing the aggregation of multiple WAR files. However, only files not in the existing Web application will be added, and files such as

Re: [ANN] Maven 2.0.6 Released

2007-04-02 Thread Donnchadh Ó Donnabháin
On 4/1/07, Jason van Zyl [EMAIL PROTECTED] wrote: The Apache Maven team would like to announce the availability of Maven 2.0.6. We have closed out 22 issues for this release and the upgrade from 2.0.5 should be pain free. We corrected a major flaw in the artifact resolution mechanism and we

Re: [ANN] Maven 2.0.6 Released

2007-04-02 Thread Donnchadh Ó Donnabháin
2 Apr 07, Donnchadh Ó Donnabháin wrote: On 4/1/07, Jason van Zyl [EMAIL PROTECTED] wrote: The Apache Maven team would like to announce the availability of Maven 2.0.6. We have closed out 22 issues for this release and the upgrade from 2.0.5 should be pain free. We corrected a major flaw

Re: Download Sources

2007-02-15 Thread Donnchadh Ó Donnabháin
Running mvn dependency:sources results in the following error for me [ERROR] BUILD FAILURE [INFO] [INFO] Required goal not found: dependency:sources Donnchadh On 2/15/07, Tomislav Stojcevich [EMAIL PROTECTED] wrote:

Re: Eclipse target directory

2006-12-12 Thread Donnchadh Ó Donnabháin
* Kudos: Donnchadh Ó Donnabháin * License: EPL 1.0 * DOM: http://download.eclipse.org/technology/dash/update/org.eclipse.dash.doms */ function main() { var files = resources.filesMatching(.*/pom\\.xml); var targetFolder; for each( file in files ) { if (targetFolder

Re: Progress indicators for project management

2006-09-21 Thread Donnchadh Ó Donnabháin
I tried it quicly and came across a few issues (most of which are easily dealt with). I took the example configuration on the maven2 QALab plugin page ( http://qalab.sourceforge.net/maven2/faq.html ) and simplified it to just working with PMD. I came across the following issues: * By default PMD

Re: Database deployment

2006-09-18 Thread Donnchadh Ó Donnabháin
At first I used the maven exec plugin to run a shell script, but now I'm switching to the sql-maven-plugin, both from the codehaus mojo project. sql-maven-plugin seems to be exactly what I was looking for. other options would have been dbunit for data and using hibernate (maybe via the maven

Re: Database deployment

2006-09-12 Thread Donnchadh Ó Donnabháin
Donnchadh Ó Donnabháin a écrit : Hi everyone, I'm using the cargo plugin to deploy a webapp to tomcat. This webapp depends on a database and I would like run a SQL script to deploy the updated schema before deploying the webapp. What is the best approach

Integration testing - tests are being run during both 'test' and 'integration-test' phases

2006-09-12 Thread Donnchadh Ó Donnabháin
I've added the following to buildplugins: plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-surefire-plugin/artifactId executions execution phaseintegration-test/phase goals goaltest/goal /goals

Re: Integration testing - tests are being run during both 'test' and 'integration-test' phases

2006-09-12 Thread Donnchadh Ó Donnabháin
That's perfect Thanks Donnchadh On 9/12/06, Wendy Smoak [EMAIL PROTECTED] wrote: On 9/12/06, Donnchadh Ó Donnabháin [EMAIL PROTECTED] wrote: I've added the following to buildplugins: plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-surefire-plugin

Re: Eclipse target directory

2006-09-08 Thread Donnchadh Ó Donnabháin
In eclipse right-click on the target folder and select 'Properties...' Then, in the Info page, check the 'derived' check box. This should exlude it from searches and resource lookups. Probably error reporting too but I haven't verified that Donnchadh On 9/5/06, Douglas Ferguson [EMAIL

Re: Eclipse target directory

2006-09-08 Thread Donnchadh Ó Donnabháin
. Where does it store this value? I can't find it in any of the config files for the project. Could this be added to eclipse:eclipse? -Original Message- From: Donnchadh Ó Donnabháin [mailto:[EMAIL PROTECTED] Sent: Friday, September 08, 2006 8:48 AM To: Maven Users List Subject: Re: Eclipse

Module dependecy graph

2006-09-01 Thread Donnchadh Ó Donnabháin
Hi everyone, Does anyone know of a tool (preferrably a maven2 plugin) to generate a graph of dependices between modules within a maven2 project? I'm thinking of something that you could point at the root pom.xml and would go through all the modules - possibly something like springs beandoc (BTW

Database deployment

2006-09-01 Thread Donnchadh Ó Donnabháin
Hi everyone, I'm using the cargo plugin to deploy a webapp to tomcat. This webapp depends on a database and I would like run a SQL script to deploy the updated schema before deploying the webapp. What is the best approach to this? Is there a plugin to facilitate this? Once I have this working I

Re: Module dependecy graph

2006-09-01 Thread Donnchadh Ó Donnabháin
a multi-module project, you will have to run the site goal within each module directory since the plugin currently does not collate all the dependency information. HTH, Vinod. On 9/1/06, Donnchadh Ó Donnabháin [EMAIL PROTECTED] wrote: Hi everyone, Does anyone know of a tool (preferrably