Re: How to generate javadoc jar only during deploy?

2009-04-11 Thread Stephen Connolly
2009/4/10 David Hoffer > My project currently creates javadocs during the install goal, see pom > below. How can I configure this to run only if deploy goal is run instead? > > Alternatively, is there a way this can be externalized so that individual > developers can turn this feature off when t

Re: Multimodule Project and a configuration file for a plugin

2009-04-11 Thread Wayne Fay
> But i would like to define only a single file so i have setup > it that way to use the file in the root module of my project... The best solution to these kinds of problems is to modify the plugin code so it will search for its configuration file in the plugin dependency jar(s), and then include

Re: Multimodule Project and a configuration file for a plugin

2009-04-11 Thread Karl Heinz Marbaise
Hi Martin, first thank you for your answer, the problem with the solution is that i need to define environment variables...which is a source of failures in different build environments...so if there is no other solution i have to cope with the used approach... seemed not be va

RE: Multimodule Project and a configuration file for a plugin

2009-04-11 Thread Martin Gainty
maven2.0 true JAVA_HOME ${JAVA_HOME} M2_HOME ${M2_HOME} oder durch Umgebungsvariablen für

useDefaultExcludes=false and the war-plugin

2009-04-11 Thread Michiel Meeuwissen
Hello, Is it somehow possible to make the war-plugin also copy the scm-files (.svn and/or CVS directories), which are present in my src/main/webapp, to target? The assembly plugin has a 'useDefaultExcludes' property but I can't seem to figure out wether or how this could be helpful to me. The sam

Multimodule Project and a configuration file for a plugin

2009-04-11 Thread Karl Heinz Marbaise
Hi, i have a multimodule setup and i'm using a plugin com.google.code.maven-license-plugin maven-license-plugin but i have a little problem with the configuration of the plugin. The plugin needs a file as a template as the license header. But i would like to define only a single file so i hav