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
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?
>
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
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
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,
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
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
#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
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
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
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
>
>
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
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
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
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
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
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
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
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
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
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
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
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
23 matches
Mail list logo