Re: [m1] Run jar without the tests ?

2005-11-17 Thread Patrick Kimber
maven -Dmaven.test.skip=true jar On 17/11/05, Blaise Gosselin <[EMAIL PROTECTED]> wrote: > Is it possible, in Maven 1, to disable the tests while executing the jar > command ? > > __ _ _ _ > bgOnline > > - To uns

Re: Maven Plug-in for Eclipse

2005-12-15 Thread Patrick Kimber
I have subscribed within the last hour using the address: [EMAIL PROTECTED] I had no errors On 15/12/05, David Jackman <[EMAIL PROTECTED]> wrote: > Well, the user-subscribe email worked, but the subscription confirmation > fails (returned as undeliverable). Is anyone else seeing this problem? >

Re: Informations about Maven

2006-03-22 Thread Patrick Kimber
Hi Try looking at the mailing list on the following site: http://www.nabble.com/Maven-f177.html You will find loads of useful information Patrick On 22/03/06, Gerd Berger <[EMAIL PROTECTED]> wrote: > Hi, > > I'm a pupil from Austria and I go to a Higher technical school for > electronic data p

Re: Download dependencies

2006-03-22 Thread Patrick Kimber
Aaron If you are using Maven 2 then the dependency plugin will do what you want: http://mojo.codehaus.org/dependency-maven-plugin/introduction.html The command: mvn dependency:copy-dependencies Will copy project dependencies to: target\dependency\ Pat On 21/03/06, Shanmugam, Venkat <[EMAIL PRO

Re: install:install-file

2006-03-24 Thread Patrick Kimber
Are you using Maven 1 or 2? On 24/03/06, Lars Mogren <[EMAIL PROTECTED]> wrote: > Hi, > Maybe this is a newbee question but can I use install:install-file to add > sources to 3rd-party jars? > Regards > Lars > - To unsubscribe,

Re: Error w/ Cobertura

2006-04-04 Thread Patrick Kimber
Try downloading Maven 2.0.3 from: http://maven.apache.org/download.html On 04/04/06, Lee Meador <[EMAIL PROTECTED]> wrote: > I get this error when trying to run the Cobertura report: > > [INFO] Error resolving version for 'org.codehaus.mojo:cobertura-maven-plugin': > Plugin requires Maven version

Re: Cobertura ?

2006-05-23 Thread Patrick Kimber
The plugin works well for me: Add the following build configuration into the pom.xml file: org.codehaus.mojo cobertura-maven-plugin clean ... Add the following plugin configuration into t

Re: Cobertura ?

2006-05-23 Thread Patrick Kimber
#x27;t work ??? http://mojo.codehaus.org/cobertura-maven-plugin/ Cheers -Original Message- From: Patrick Kimber [mailto:[EMAIL PROTECTED] Sent: 23 May 2006 11:43 To: Maven Users List Subject: Re: Cobertura ? The plugin works well for me: Add the following build configuration into the p

Re: [Maven documentation] How to insert images

2007-08-09 Thread Patrick Kimber
Hi Have a look at the documentation guide: http://maven.apache.org/guides/mini/guide-apt-format.html The section heading "Figure" is probably what you are looking for. Patrick On 09/08/07, Tibetoine <[EMAIL PROTECTED]> wrote: > > Hi, > > I would like to know what's the issue to insert images wi

Re: [Maven2] Building Website using Maven

2007-07-13 Thread Patrick Kimber
Hi I create a custom index.html by editing this file: src/site/apt/index.apt This file is in apt format: http://maven.apache.org/guides/mini/guide-apt-format.html Patrick On 13/07/07, Dimuthu Leelarathne <[EMAIL PROTECTED]> wrote: Hi All, I am trying to build the website for a project. I man

Re: [Maven2] Building Website using Maven

2007-07-13 Thread Patrick Kimber
esn't work. Regards, Dimuthu On Fri, 2007-07-13 at 09:06 +0100, Patrick Kimber wrote: > Hi > > I create a custom index.html by editing this file: > src/site/apt/index.apt > > This file is in apt format: > http://maven.apache.org/guides/mini/guide-apt-format.html > >

Re: running a java class form maven2

2007-07-16 Thread Patrick Kimber
Hi I use the Maven exec plugin: http://mojo.codehaus.org/exec-maven-plugin/ To run MainClass in the current VM with the enclosing project's dependencies as classpath: mvn exec:java -Dexec.mainClass="com.company.app.MainClass" Patrick On 16/07/07, EJ Ciramella <[EMAIL PROTECTED]> wrote: Is the

Re: Skipping Test Phase.

2006-06-06 Thread Patrick Kimber
To skip the unit tests: mvn -Dmaven.test.skip=true or add the following to pom.xml: ... org.apache.maven.plugins maven-surefire-plugin true ... On 06/06/06, cristal <[EMAIL PROTECTED]> wrote: Is there a way that the maven2 b

Re: Does Pro Apache Maven covers Maven 2 version?

2006-06-28 Thread Patrick Kimber
Have you looked at the "Better Builds with Maven" book? Available to download from: http://www.mergere.com/m2book_download.jsp On 28/06/06, David <[EMAIL PROTECTED]> wrote: Dear members, I would like to buy the book: Pro Apache Maven, from Press.com, but there is no information if the book

CSharp Plugin - Failed to resolve artifact nunit-console

2006-08-30 Thread Patrick Kimber
I am trying to build the CSharp plugin. I have checked the source code out of Subversion and set my path to include csc.exe. When I run the mvn install command the build is successful until I get to the section: [INFO] Building Maven CSharp Exe Sample Then I get the following error: [ERROR] B

Re: how to run a program build with maven

2007-02-13 Thread Patrick Kimber
Hi Ute You can use the Maven 2 Exec plugin... http://mojo.codehaus.org/exec-maven-plugin/ Although there is a bug which will prevent you passing parameters to the application. Alternatively the dependency plugin will copy your jar files to a folder. Try running: mvn dependency:copy-dependencie

Re: Mavan2 simple program not working.

2007-02-15 Thread Patrick Kimber
Hi Raj I don't think you need the maven.xml file. Try running mvn package This should compile your program and build a jar file which will be placed into the target folder. Let me know if it works. Patrick On 15/02/07, Rajmahendra <[EMAIL PROTECTED]> wrote: hi all i am using JDK 1.5 and Ma

Re: how to run a program build with maven

2007-02-15 Thread Patrick Kimber
Hi Jerome The JIRA issue ID is: http://jira.codehaus.org/browse/MEXEC-5 Patrick On 15/02/07, Jerome Lacoste <[EMAIL PROTECTED]> wrote: On 2/13/07, Patrick Kimber <[EMAIL PROTECTED]> wrote: > > Hi Ute > > You can use the Maven 2 Exec plugin... > http://mojo.cod

Re: help with multiple artifacts from one pom.xml

2007-02-16 Thread Patrick Kimber
Hi Vladimir I think in Maven 2 you would be expected to write a multi module project. Documentation for this can be found in: 1) The "Better Builds with Maven" Book (which is free of charge): http://www.mergere.com/m2book_download.jsp 1) Multiple Module Projects at http://maven.apache.org/plug

Re: help creating "multiple" artifacts using one pom.xml file (profile question)

2007-02-16 Thread Patrick Kimber
Hi Vladimir I have tried to answer your question on your other email... Patrick On 15/02/07, VLADIMIR TERZIC <[EMAIL PROTECTED]> wrote: I have three artifacts (war files) that need deployed to two servers. I currently have a profile for each (to apply filters) and I am able to build them indiv

Re: Maven Users Archive Page

2007-02-20 Thread Patrick Kimber
Hi You could try using Nabble: http://www.nabble.com/Maven---Users-f178.html Patrick On 20/02/07, Kevan Dunsmore <[EMAIL PROTECTED]> wrote: Has something changed on the Maven Users Archive Page? I can see the page at http://www.mail-archive.com/users%40maven.apache.org/ But when I try to searc

Re: M2 settings.xml

2007-03-01 Thread Patrick Kimber
Here is a simple example: default default serverId serverName http://myserver/repository default On 01/03/07, Nick Stolwijk <[EMAIL PROTECTED]> wrote: You mean something like this: http://maven.apache.org

Re: Maven command to run the main class of a desktop application

2006-11-02 Thread Patrick Kimber
Hi Yes, the exec plugin should do the job... The plugin is hosted at: http://mojo.codehaus.org/exec-maven-plugin/ To run "MainClass" in the current VM with the enclosing project's dependencies as classpath: mvn exec:java -Dexec.mainClass="com.company.app.MainClass" There is an open issue which