Configuring source plugin to skip execution

2009-11-06 Thread Stevo Slavić
and javadoc for all modules. Not sure if configuring release plugin not to useReleaseProfile for that war module only would do the trick. Regards, Stevo.

configuring one plugin from another

2008-08-13 Thread Kallin Nagelberg
Hey, I'm trying to run the maven-clover-plugin to generate a code coverage report. It instruments my sources, and copies them to target/clover/src and target/clover/generated-sources. A problem arises when the plugin invokes the compiler:compile plugin. Output looks like: [INFO]

Re: configuring one plugin from another

2008-08-13 Thread Kallin Nagelberg
I tried using a profile to alter the compile plugin's config just for certain executions like: profiles profile idclover/id build pluginManagement plugins plugin

configuring a plugin while preventing its execution

2008-07-02 Thread Kallin Nagelberg
I'm trying to create a multi-module project that uses the same plugin for source generation. To make it as simple as possible I have a parent POM that contains the configuration of the plugin in a build plugins plugin tag. My problem is that the plugin is being executed when

Re: configuring a plugin while preventing its execution

2008-07-02 Thread Dennis Lundberg
You can put your plugin configuration in a pluginManagement [1] element inside the build element build pluginManagement plugins plugin This only configures the plugins, but don't execute them. [1]

Re: configuring a plugin while preventing its execution

2008-07-02 Thread Kallin Nagelberg
great, thanks for the help On Wed, Jul 2, 2008 at 2:21 PM, Dennis Lundberg [EMAIL PROTECTED] wrote: You can put your plugin configuration in a pluginManagement [1] element inside the build element build pluginManagement plugins plugin This only configures the plugins, but

Re: configuring a plugin while preventing its execution

2008-07-02 Thread Kallin Nagelberg
I've noticed that using the pluginmanagment the plugin is not associated to lifecycle events by default in the children. Is there a way to make this happen so that I don't have to declare the plugin in every child? On Wed, Jul 2, 2008 at 3:22 PM, Kallin Nagelberg [EMAIL PROTECTED] wrote: great,

configuring a plugin.

2008-06-17 Thread Niranjan Deshpande
I want to use the javadoc goal of the maven-javadoc-plugin. But I want to run it in three different ways 1. generate a .properties file from a source java file, using a custom doclet. My doclet expects 3 command line parameters. 2. generate javadoc for all other java files (excluding the java

Difficulty configuring dependency plugin

2007-11-18 Thread chago
mvn dependency:resolve from the command line, it still insists on attempting to download archives with a group of com.somedomain. Am I making a mistake? -- jim -- View this message in context: http://www.nabble.com/Difficulty-configuring-dependency-plugin-tf4829454s177.html#a13817080 Sent from

Re: Difficulty configuring dependency plugin

2007-11-18 Thread chago
in context: http://www.nabble.com/Difficulty-configuring-dependency-plugin-tf4829454s177.html#a13822556 Sent from the Maven - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Configuring war plugin for using a jar instead of WEB-INF/classes

2006-11-07 Thread Sebastien Brunot
Hi all, i've got a war project which pom build section contains the following statements: !-- Package webapp classes into a jar instead of under WEB-INF/classes -- plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-war-plugin/artifactId executions execution

Re: Configuring war plugin for using a jar instead of WEB-INF/classes

2006-11-07 Thread Arnaud HERITIER
help, Sebastien -- View this message in context: http://www.nabble.com/Configuring-war-plugin-for-using-a-jar-instead-of-WEB-INF-classes-tf2589199s177.html#a7219855 Sent from the Maven - Users mailing list archive at Nabble.com

RE: Configuring war plugin for using a jar instead of WEB-INF/classes

2006-11-07 Thread Sebastien Brunot
Issue has been created as MWAR-82 (http://jira.codehaus.org/browse/MWAR-82). Sebastien -Original Message- From: Arnaud HERITIER [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 07, 2006 3:59 PM To: users@maven.apache.org Subject: Re: Configuring war plugin for using a jar instead

Configuring a plugin from inside a different plugin?

2006-06-30 Thread Russell, Mark
Is it possible to configure a plugin via code inside another plugin? Specifically I have a plugin that generates a bunch of source code, and based on its output it needs to configure the manifest of the jar that will be created. Thus my custom plugin basically needs to configure the

[m2] configuring war plugin

2005-11-26 Thread Ashley Williams
Hi Before I file a jira issue is there some way of configuring the war plugin so that it essentially does the bare minimum of jaring up my classes directory and using a .war extension? Currently I don't need any of the bells and whistles such as autogenerating the web.xml file as I use

Re: [m2] configuring war plugin

2005-11-26 Thread Ashley Williams
- that just happens to be the xdoclet generated WEB-INF dir. Hardcoding not ideal but no blocker - I'm happy. - Ashley On 26 Nov 2005, at 11:10, Ashley Williams wrote: Hi Before I file a jira issue is there some way of configuring the war plugin so that it essentially does the bare minimum

RE : [m2] configuring war plugin

2005-11-26 Thread Olivier Lamy
PROTECTED] Objet : Re: [m2] configuring war plugin Ok, I have managed to come up with a workaround like so: configuration warSourceDirectory${project.build.directory}/generated/ src/main/resources/warSourceDirectory /configuration In other words I've told it to copy

Re: RE : [m2] configuring war plugin

2005-11-26 Thread Ashley Williams
] Envoyé : samedi 26 novembre 2005 12:40 À : Maven Users List Cc : [EMAIL PROTECTED] Objet : Re: [m2] configuring war plugin Ok, I have managed to come up with a workaround like so: configuration warSourceDirectory${project.build.directory}/generated/ src/main/resources