29
votes
10answers
43k views

how do I set eclipse.ini -vm option?

I installed maven plugin for eclipse, then I get an error like below: please make sure the -vm option in eclipse.ini is pointing to a JDK how to use -vm option to point to my jdk in eclipse.ini? ...
26
votes
4answers
25k views

Find Oracle JDBC driver in Maven repository

I want to add the oracle jdbc driver to my project as dependency (runtime scope) - ojdbc14. In MVNrepository site the dependency to put in the POM is: <dependency> ...
24
votes
4answers
9k views

Difference of maven jaxb plugins

I have determined that two jaxb plugin for maven2 exist, with some different configurations. The one is from Sun: http://jaxb.dev.java.net/jaxb-maven2-plugin/ the other from Mojo: ...
20
votes
6answers
1k views

Hosted Continuous Integration

I'm currently looking for a (cheapish!) hosted continuous integration service for my private projects and they seem a bit thin on the ground. Does anyone have any experience of using one?
18
votes
12answers
15k views

Build failed question - maven - jre or jdk problem

I have my JAVA_HOME set to C:\Program Files (x86)\Java\jdk1.6.0_18 After I run maven install I get this message from eclipse: Reason: Unable to locate the Javac Compiler in: C:\Program Files ...
10
votes
3answers
5k views

Why Spring 3 needs explicit cglib dependency declaration when using Maven?

I'm using spring 3 and maven. I've defined all spring modules in my pom.xml. When I use <aop:scoped-proxy /> annotation, I've got an error saying that cglib is missing. Well... I add cglib ...
10
votes
6answers
5k views

Surefire is not picking up Junit 4 tests

For some reason I cannot get Maven 2 Surefire plugin to execute JUnit 4 test class. public class SimpleTest { @org.junit.Test public void simple() { System.out.println("foo"); } } ...
8
votes
4answers
2k views

How to exclude a module from a Maven reactor build?

We have a Maven 2 project with lots of modules in it. Example: <modules> <module>common</module> <module>foo</module> <module>data</module> ...
7
votes
3answers
120 views

Is there are way to install maven dependencies before maven attempts to resolve them?

I have to unpack some dependencies from a remote location and install them locally. I successfully get them (using the antrun plugin) and install them (using the install plugin) However, if I define ...
7
votes
3answers
807 views

How to keep Maven profiles which are activeByDefault active even if another profile gets activated?

I have a profile in my pom.xml which should be always active unless it is explicitely deactivated (-P !firstProfile). I solved this by using the activeByDefault flag: <profiles> ...
7
votes
1answer
2k views

GWT webappcreator creating a Maven project: the source attachment does not contain the source for the file URLClassPath.class

I have created a Maven2-based GWT application, imported it into Eclipse, and when I Debug As a GWT Web Application, the Eclipse debug session suspends with a FileNotFoundException. It displays a ...
7
votes
2answers
464 views

How to upload sources to local Maven repository

Suppose I do have maven 2 java project in my local machine, when I'm doing mvn install, I'm build project jar and push it to my local maven repo, how can I force maven to push to local repo project ...
7
votes
2answers
2k views

JAVA_HOME gets mangled by Maven

I'm retrofitting bunch of existing Java projects with unified Maven build. Since each project is mature and has established Ant based build all I'm using maven-antrun-plugin to execute existing ...
6
votes
4answers
142 views

Maven dependency resolution (conflicted)

lets say i four projects: Project A (has a dependency on B and D) Project B (has a dependency on D) Project C (has a dependency on D) Project D In this scenario if i run project a, Maven will ...
6
votes
2answers
260 views

Dependency management for big projects

I am working in a fairly big project. We have lots of projects and each project has dependencies. We use maven and normally we don't have any problems. So, without giving much details, imagine that ...
6
votes
3answers
1k views

maven2: excluding directory from WAR

I tried this to exclude whole directory (${basedir}/src/main/webapp/webscripts) from my WAR file but it failed. What is wrong? this doesn't work: <configuration> <webResources> ...
6
votes
3answers
3k views

Maven maven-exec-plugin multiple execution configurations

Is it possible to invoke a maven-exec-plugin (or any other plugin's) execution by its id from the command line? Let's say my pom.xml file looks like this: <project> [...] <plugin> ...
6
votes
4answers
524 views

Generating javadoc for project involving scala modules

If I have a project which has some of its modules in scala (ie java modules, scala modules side by side) - how have people solved combining scaladoc generated HTML with javadoc generated to provide a ...
6
votes
2answers
693 views

building cocoa project with maven

i have a cocoa project and i'd like to build it with maven. is there any maven plugin for building objective-c code?
5
votes
2answers
440 views

How to break a maven build when there is a dependency conflict?

I ran mvn dependency:tree for a project and I saw output like the following: [INFO] my:project:jar:1.0.0-SNAPSHOT [INFO] +- some.other:library:jar:2.0.0:compile [INFO] | \- ...
5
votes
2answers
217 views

Setting up Maven for a team

I have used Maven extensively for my personal projects, but now I have to set it up for a small team of 5-7 developers. My main question is, what's the recommended approach for managing dependencies ...
5
votes
2answers
2k views

Maven Buildnumber plugin - Git

The Maven Buildnumber plugin doesn't appear to work with GIT yet. Is there a workaround for the time being? I recently switched from SVN to GIT and have found it to be an easy transition, but this ...
5
votes
5answers
3k views

Maven best practice for generating artifacts for multiple environments [prod, test, dev] with CI/Hudson support?

I have a project that need to be deployed into multiple environments (prod, test, dev). The main differences mainly consist in configuration properties/files. My idea was to use profiles and ...
4
votes
4answers
182 views

How do I package and run a simple command-line application with dependencies using maven?

I am brand new to both java and to maven, so this is likely very simple. If I follow the maven2 hello world instructions here: ...
4
votes
1answer
948 views

How can i resolve plugin problem in maven:' Unable to load mojo'

I have configured all the dependencies in my pom.xml through maven. when i give the command 'mvn install' I get the following error: [INFO] Internal error in the plugin manager executing goal ...
4
votes
5answers
118 views

Couldn't understand what Maven is all about, looking at the formal definitions

I am a very beginner to Java, recently trying to use some existing libraries and suddenly Maven came out in between. I am getting no idea reading the project page on Apache website, what maven is all ...
4
votes
4answers
573 views

How can I have a Maven dependency on the runtime classpath but not the test classpath?

I have a case where I want a dependency on the runtime classpath but not the test classpath. The dependency in question is Logback, an SLF4J implementation. In runtime, I want my code to ...
4
votes
2answers
994 views

How to change maven logging level to display only warning and errors?

I want to prevent maven from displaying INFO messages, I want to see only WARNINGS and ERRORS (if any). How can I achieve this, preferably by changing the command line that calls maven?
4
votes
2answers
620 views

How to use space in arguments for Maven 2 exec plugin

Related Question: Maven Exec Plugin not reading configuration In my configuration I need an argument which is a file path. I found a rather "dirty" workaround by surrounding the argument with quotes ...
4
votes
3answers
549 views

Use Maven just to fetch some library jars

We are using ANT for our build process and don't have plans to change this in the near future. Is it possible to use Maven to just fetch common Open Source jar files (e.g. Log4J, SWT, JFace) and put ...
4
votes
1answer
441 views

What are unused/undeclared dependencies in maven ? What to do with them?

Maven dependency:analyze complains about the dependencies in my project. How does it determine which are unused and which are undeclared ? What should I do about them ? Example: $ mvn ...
4
votes
2answers
3k views

maven log file configuration

How can I configure logging for maven build? The log which maven generates is not providing enought information like time stamp with each log statement. Where/what log config file maven uses?
4
votes
2answers
2k views

log4j configuration file in a multi-module Maven project

I am working on a multi-module Maven project, whose structure is like this: war-module jar-module The war-module depends on the jar-module, and will add the jar artifact into the webapp's lib ...
4
votes
2answers
74 views

Is it possible to avoid duplication of maven archiver configuration?

This is my parent pom.xml: [...] <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>2.0</version> ...
4
votes
1answer
1k views

Maven: How to change path to target directory from command line?

Maven: How to change path to target directory from command line? (I want to use another target directory in some cases)
4
votes
2answers
806 views

Maven - 'all' or 'parent' project for aggregation?

For educational purposes I have set up a project layout like so (flat in order to suite eclipse better): -product | |-parent |-core |-opt |-all Parent contains an aggregate project with core, ...
4
votes
3answers
2k views

How do I surpress maven assembly plugin skipping files that are already added? Or allow overwrite?

For weeks, I've been wrestling with maven, getting it to deploy our project "properly." I'm almost done but I have one stubborn little problem: When I use the maven assembly plugin with the ...
4
votes
1answer
4k views

Maven best practice for generating multiple jars with different/filtered classes?

I developed a Java utility library (similarly to Apache Commons) that I use in various projects. Additionally to fat clients I also use it for mobile clients (PDA with J9 Foundation profile). In ...
4
votes
3answers
3k views

Why is my Maven so slow on Ubuntu?

I have Maven on Ubuntu server. It seems to try lots and lots of places to download from but the download times out, but the timeout takes ages, so my whole build takes more than a hour. Downloading: ...
4
votes
1answer
1k views

How to run jetty:run-war using a war defined by maven coordinates?

Background: I'm setting up a functional tests module in a maven project. We use the maven-jetty-plugin for testing. I've got the jetty plugin set up as described here (to play nicely with the ...
4
votes
1answer
1k views

Config Maven 2 to print out javac commands during compile phase

Is there any way to force Maven 2 (>2.0.10) to print the actual javac commands it's executing. We keep running out of memory even though we've bumped up the max using MAVEN_OPTS. I'd like to be able ...
4
votes
9answers
2k views

Best Practices for Code Formatting on Large Projects

I maintain the build for a large J2EE/Maven/Hudson/Perforce project with about 20 developers spread across the world. The solution in-place for code formatting is to format the codebase using jalopy ...
4
votes
2answers
5k views

GlassFish v3 and glassfish-maven-plugin (Mac)

I'm trying to use the glassfish-maven-plugin (https://maven-glassfish-plugin.dev.java.net/) with GlassFish v3 (I'm on a Mac and using Eclipse) and I can't seem to get my web app to deploy. I keep ...
3
votes
1answer
360 views

java.lang.ClassNotFoundException: javax.servlet.jsp.el.ImplicitObjectELResolver$ImplicitObjects

after upgrading to latest version of eclipse Helios 3.6, M2E 1.0 , WTP 3.2.5 and trying to run my maven project which uses JSF 2.1.3 and Spring 3 on tomcat 7, i am getting the following exception: ...
3
votes
2answers
141 views

How to download software dependencies in Maven 2?

I am very new in using Maven. Appreciate if anyone can give me some helps. I want to build a plugin for JIRA. I have installed Atlassian Plugin SDK which comes with Maven 2 (pre-bundled together). ...
3
votes
1answer
152 views

Maven tries to download ojdbc14.jar again - jar already present in local repository

When I run the command mvn eclipse:eclipse, the dependency jar ojdbc14.jar is getting downloaded without any issues. Then, when I run the command mvn clean install, maven tries to download the same ...
3
votes
1answer
165 views

Maven warning on MacOS: Workspace defines a VM that does not contain a valid jre/lib/rt.jar

I am trying to clean my Maven and I am getting this warning when I run mvn eclipse:eclipse -Dwtpversion=2.0 [WARNING] Workspace defines a VM that does not contain a valid jre/lib/rt.jar: ...
3
votes
2answers
1k views

Cannot construct org.apache.maven.plugin.war.util.WebappStructure as it does not have a no-args constructor

[INFO] [war:war {execution: default-war}] [INFO] Packaging webapp [INFO] ------------------------------------------------------------------------ [ERROR] FATAL ERROR [INFO] ...
3
votes
1answer
95 views

add src/it/java as test folder in intellij when opening project as pom.xml

I have a new test fodler called src/it/java (for integration tests). I added this to my pom.xml (in my simple example app) <build> <plugins> <plugin> ...
3
votes
2answers
170 views

Should Maven dependency version ranges be considered deprecated?

Given that it's very hard to find anything about dependency version ranges in the official documentation (the best I could come up with is ...

1 2 3 4 5 12