1
vote
2answers
32 views
Getting all Maven artifacts from Hudson
I have a Maven project that is a child project. It has many sibling projects and the job of this project is to get resources from the siblings and package them in a zip file using …
2
votes
2answers
42 views
Lightweight Java database with Maven plugin for starting/stopping?
For unit tests, demonstrations and Hibernate tasks I would like to use a small and simple Java database like Derby / Java DB or HSQLDB, which can be called from within Maven.
So f …
2
votes
2answers
44 views
auto generation of serial version uid using maven2 plugin
Is there a maven plugin which automatically calculates and updates serial version uid for all java class files implementing the Serializable interface?
0
votes
3answers
45 views
Multi Module Project - Assembly plugin
I am using Maven 2.0.9 to build a multi module project. I have defined the assembly plugin in my parent pom. I can get my assemblies built using
mvn install assembly:assembly
Th …
0
votes
0answers
6 views
Maven - How to let a plugin see the build output of its parent?
Hi folks,
I’m new to maven and my first task is writing a Mojo. We are running a integration test tool which loads some classes of the build output and runs some tests on them. I …
0
votes
1answer
31 views
Maven test dependency in multi module project
I use maven to build a multi module project. My module 2 depends on Module 1 src at compile scope and module 1 tests in test scope.
Module 2 -
<dependency>
<g …
1
vote
1answer
25 views
maven site plugin not deploying subprojects in a multimodule project or generating index.html
I have a multimodule project that I want to deploy a site for, but it seems like my site deployment configuration is not being inherited by subproject child modules.
parent
mo …
0
votes
0answers
18 views
Maven Spell Checker Plugin
Hi all,
I haven't found any spell checkers out there that seem to do a reasonable job. For a little while, I was using the JBoss Maven Spellchecker plugin:
http://www.jboss.org/ …
0
votes
0answers
24 views
Generate plugin documentation
I write a plugin and was wondering how I get the site plugin to generate the documentation about the 'goals' available. The plugin it self is wokring fine, just the documentation d …
1
vote
1answer
46 views
How can I clean _svn folders/files from ‘src/main/webapp’ folder when maven2 builds webapp project in netbeans 6.7?
I have created a webapp using maven2 archetype in netbeans 6.7.
when I do plain build(removing all the plugin configuration), it copies all the required files including the '_svn' …
1
vote
2answers
31 views
How to configure defaults for a parameter with multiple values for a Maven plugin
I'm writing a Maven plugin and I am using default values for all parameters such as this:
/**
* The file with the site structure.
*
* @parameter expression="${generateSite.sit …
0
votes
4answers
39 views
“The PluginDescriptor not found” error when executing copy-resources maven-resources-plugin’s goal
As part of my pom.xml I copy some extra resources to the target directory as follows.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId> …
0
votes
1answer
71 views
run jetty without packaging the project using maven 2 plugin
I'm trying to run jetty without building the whole project, but simply point jetty to a folder under the target folder. Reason behind doing this is that I wish to use jetty as a st …
0
votes
1answer
30 views
How do I exclude files/directories from the target directory using the maven war plugin?
I followed the instructions here, and it worked but only if it was mapped to a directory other than the default.
Here's a sample that I tried:
<configuration>
<webR …
0
votes
4answers
67 views
Organize imports with Maven2, Eclipse-style?
I'm a lone Emacs user in a group that's hung up on Eclipse. Time and again, code diffs are made larger by imports that have been "organized" or "cleaned up" by Eclipse.
I don't ha …
