Tagged Questions
0
votes
0answers
40 views
How to generate a indeterminate number of WAR files using Maven?
I would like to generate multiple WAR files, during the build cycle of my project. I already know how to add multiple dest-file, and other configuration with the maven-war-plugin. But I want to know ...
2
votes
1answer
394 views
Optional filter file in Maven
I have the following filters configured in my pom.xml:
<build>
...
<filters>
<filter>build.properties</filter>
<filter>user.properties</filter>
...
3
votes
3answers
950 views
Maven advice relating to versioning of a large project and the avoidance of versions containing expressions
I'm looking at restructuring a large Maven project...
A basic overview of our current structure:
build [MVN plugins, third party dependency management]:5.1
NRW Utils:6.0.0.0-beta12-SNAPSHOT
...
0
votes
1answer
66 views
Is it possible to have a multi-module pom as a module of a parent multi-module pom?
The required structure is like this
Projects/pom.xml
Projects/parent1/pom.xml
Projects/parent2/pom.xml
Projects/parent2/child1/pom.xml
Projects/parent2/child2/pom.xml
parent1 and parent2 are ...
12
votes
2answers
4k views
Migration from Maven 2/3 to Gradle
I have been looking into Gradle and looks pretty interesting. I think being able to write your scripts in any other language than XML is pretty cool, and it is not clear to me whether polyglot Maven ...
2
votes
2answers
134 views
Packaging JVM with Application While Maintaining an Automated and Repeatable Build Process
I'm currently working on a project that requires us to package a JRE with our application. I'm normally against this as it makes keeping the JRE patched quite difficult, but in this case it is ...
1
vote
1answer
105 views
How would an ideal project layout look like?
For a new project I want to use maven-2 and subversion.
The requirements are:
The Project should be checkout as one subversion folder.
Maven should build all modules using a super-pom
It should be ...
6
votes
2answers
9k views
Usage of maven ${basedir} in multi-module setup
I am using a local repository as described in Maven: add a dependency to a jar by relative path.
The repository-url is defined in the topmost pom.xml as
...
1
vote
1answer
358 views
maven2 use libs in a specific folder during compilation
In my project structure there is a folder called /libs which contains all necessary libraries, that my project need during compilation. Is it possible that I told maven2 during the process of ...
1
vote
3answers
714 views
Disable war overlays in maven
When I have a dependency of type 'war' in a maven project, it automatically uses overlay to merge it into the project I am building.
I would like to disable overlay.
To make the development process ...
2
votes
2answers
2k views
How to skip lifecycle phase in multi maven module
I have a maven multi module project which call two sub modules. please note that this child module do not use the parent markup tag. Now I need to have the deploy phase executed only on one child ...
2
votes
3answers
2k views
Maven child modules not being built
I have a relativey simple multi module maven buid with a parent pom. This includes the 2 child modules as follows:
<modules>
<module>WebApp</module>
...
1
vote
0answers
565 views
Maven site command fails : looking for pmd plugin : I don't need it
This is my pom file reporting section:
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
...
3
votes
1answer
1k views
Overriding 'clean' lifecycle in Maven
I was going through a book that explain how to override 'default' lifecycle of Maven.
It says: To define a new lifecycle for a packaging type, you'll need to configure a LifecycleMapping component ...
5
votes
2answers
528 views
how to time (profile) maven goals in a multi-module project
We have a huge project with many submodules. A full build takes currently over 30mins.
I wonder how this time distributes over different plugins/goals, e.g. tests, static analysis (findbugs, pmd, ...
0
votes
1answer
490 views
Problem creating jar through maven
HI,
I am trying to creating executable jar using maven. The jar is created and when i try to execute java -jar myjar i get the following error
Caused by: java.lang.ClassNotFoundException: ...
4
votes
1answer
1k views
How to use CVS with the maven-release-plugin?
i'm having a hard time getting the maven-release-plugin to work with our CVS repository. Hope I'm missing something obvious, or is noone using CVS/pserver and Maven2/3 anymore ?
The first problem is ...
0
votes
2answers
410 views
Removing generated resources from a jar file
Hello I am using maven2-xdoclet2-plugin to generate the hibernate mappings
The config of xdoclet is something similar to this:
<plugin>
<groupId>org.codehaus.xdoclet</groupId>
...
0
votes
2answers
188 views
Building in Maven without cleaning
When we build a Maven project without doing mvn clean, we sometimes get "voodoo errors" such as NoSuchMethodError. I believe these are caused by moving/renaming files.
I don't want to use the clean ...
2
votes
4answers
1k views
How to get Maven to use the latest versions of certain plugins?
I just lost 2 hours of time because of a bug in the maven-compiler-plugin v2.0.2 that was fixed in version v2.3.2.
Apparently if you don't specify the version of the Maven compiler plugin, Maven ...
0
votes
0answers
434 views
Maven: add a dependency to a jar by relative path via maven-install-plugin
Trying to setup a project based repo local to that project and found the answer here, I'm trying to take that further and automate it via the maven-install-plugin. When i run the following with mvn ...
3
votes
1answer
1k views
Maven + Mercurial for Build Numbers
I can't figure out how to get a Mercurial revision id put into my Maven build (ideally I would like it in the MANIFEST of my jars and war).
The closest solution I could find is:
mvn ...
2
votes
1answer
620 views
multi-product project layout with svn and maven
I need to migrate a project from Ant to Maven.
This project has multiple proprietary packages (lets say, stacked in 3/4 layers. some of the layers share the same svn repo).
Also, it's using ~30 3rd ...
1
vote
2answers
174 views
Parent build file in buildr
I am currently looking at migrating from maven2 to buildr and I am concerned about how get to keep the build scripts DRY.
Currently our maven project is defined with parent pom file containing all ...
0
votes
3answers
88 views
Library Development with Maven
This may be more of a process then technology solution. I am currently working on a project that is split into a library and an implementation application. Doing this has been a very effective way to ...
3
votes
2answers
246 views
How do you specify a string of goals as the defaultGoal in maven 2?
I'm just curious, is there a way to specify that you want a string of goals run as the default goal in a maven project? Is there an equivalent to Ant's <project name="MyProject" basedir="." ...
5
votes
6answers
6k views
What are the advantages/disadvantages of using Maven? [closed]
I would like to know the reasons people use or not use Maven. We are about to switch all our builds to Maven 2 and don't have to much experience with it.
What are the advantages/disadvantages of ...
0
votes
1answer
229 views
How do I compile a single module in a scenario of two multi-module Maven projects
How do I compile a single module in the following scenario of two multi-module Maven projects A and B.
Both projects are located in the same directory so that the directory structure looks like this:
...
2
votes
3answers
3k views
how to get a dependency tree for an artifact?
dependency:tree can be used to see the dependency tree for a given project. But what I need is to see the dependency tree for a 3rd party artifact. I guess I can create an empty project, but I'm ...
6
votes
3answers
2k views
How to display buildnumber in spring-based web application
I need to display build number in my index.jsp page
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8" />
<title>Title (build: BUILDNUMBER )
</head>
The build ...
3
votes
4answers
436 views
maven findbugs 'high water mark'
[findbugs is the example here, question is applicable to any such maven plugin]
I attended a build lecture not long ago and a pattern that was talked about that I quite liked was: when adding a new ...
3
votes
1answer
211 views
Detect maven build status (success/error) from a maven plugin
I am wondering how would one get the status of a build (ERROR/SUCCESS) from a maven plugin ?
1
vote
3answers
343 views
How can one determine the origin of a given Maven dependency?
Given a local Maven repository, can one determine the remote repository that is the source of a particular dependency? How?
1
vote
4answers
97 views
How can I ask Maven for a list of the default repositories?
What command can I use to ask Maven for a list of the default repositories that it searches for its dependencies? If no such command exists, where else may I look to find this default list?
1
vote
2answers
109 views
Build Process failed with maven package
I am working on a maven project to build a simple utility api. The same source code when build on my office win XP machine, was successful. Now i am at home and working with same source code on CentOS ...
-1
votes
4answers
187 views
Why maven requires so many options to create a hello world project,can you recommend a more dedicated build tool for Java?
Quoted from here:
mvn archetype:generate -DgroupId=org.sonatype.mavenbook.simple \
-DartifactId=simple \
...
0
votes
2answers
220 views
QuickBuild: How can I create a builder to open a tarball package (tar.gz) whose name will change with each version?
I'm using PMEase QuickBuild to perform automated builds of our Maven2 projects and a nightly sanity test to ensure nothing is broken.
The test needs to untar packages which are created by the ...
0
votes
1answer
254 views
Build Issue with multi module project
I have a multi module web project. Four modules of the project are packaged as jar and added as dependency to the fifth module, which is packaged as war. When it is time to deploy the application i ...
4
votes
1answer
342 views
Consistent tagging across multiple projects in separate Git repositories
I'm working on a product which relies on several different projects each hosted in its own Git repository. When a release is made, it would be ideal for us to consistently tag every project that is ...
9
votes
3answers
14k views
How do I get Maven to use the correct repositories?
I just checked out some projects and need to build them, however I installed Maven quite some time ago (6 months maybe?) and really haven't used it since - the pom.xml for the project I have doesn't ...
1
vote
2answers
562 views
How to include a parent Spring project (using Git submodule)?
I'm currently developing multiple web applications using Spring. I'm using Maven for building and Git for version control. At the moment I'm trying to find a way to split development of some things ...
4
votes
1answer
129 views
Build different products out of common base (Java)
I'm looking for a way of packaging different products out of a common base. This could be, for example, for packaging a light version of a product or a specially customized edition.
The differences ...
60
votes
5answers
31k views
Maven: add a dependency to a jar by relative path
I have a proprietary jar that I want to add to my pom as a dependency.
But I don't want to add it to a repository. The reason is that I want my usual maven commands such as mvn compile, etc, to work ...
4
votes
2answers
9k views
Adding classpath to jetty running in maven integration-test
I'm trying to set up integration tests for a Maven project that produces a war file. (As seen here http://docs.codehaus.org/display/JETTY/Maven+Jetty+Plugin/.) However I the war file requires a bunch ...
36
votes
3answers
25k views
Building a runnable jar with Maven 2
I'm relatively new to the Maven mantra, but I'm trying to build a command-line runnable jar with Maven. I've setup my dependencies, but when I run mvn install and attempt to run the jar, two things ...
98
votes
4answers
38k views
Maven parent pom vs modules pom
There seem to be several ways to structure parent poms in a multiproject build and I wondering if anyone had any thoughts on what the advantages / drawbacks are in each way.
The simplest method of ...
18
votes
7answers
7k views
Maven and the JOGL library?
I've been studying Maven in my free time over the last several days but can't seem to figure out how to organize a project so that the JOGL libraries are used. I would preferably like the following:
...
11
votes
4answers
8k views
Is it possible to create an “uber” jar containing the project classes and the project dependencies as jars with a custom manifest file?
I'm trying to create a executable jar(using maven) that contains the project classes and it's dependencies with a manifest file that has the entry for the main class and the class path entry that ...
37
votes
2answers
29k views
Problem building executable jar with maven
I am trying to generate an executable jar for a small home project called "logmanager" using maven, just like this:
...
0
votes
1answer
78 views
couldnt recognise pom.xml file
i am build forge as build tool. it is executing maven mvn commands fine ,but it couldnt recognizing the maven project pom.xml to run the build.so i tried to execute the same pom.xml through the ...
