Apache Maven is a software project management and comprehension tool. This tag is for questions that don't relate to a specific maven version.

learn more… | top users | synonyms

1
vote
0answers
46 views
+100

Infinite recursion bug in Maven release / scm tag / Plexus DirectoryScanner?

I'm seeing my Maven release fail at the scm tagging phase with an apparent infinite recursion inside the release plugin: ... (hundreds more times) at ...
0
votes
1answer
51 views
+50

Get all the dependencies of a MavenProject (including transitive ones) using Aether

How can you get all the dependencies of a MavenProject (including transitive ones) using Aether? I have seen numerous examples where you specify the gav and it resolves the artifact and all it's ...
2
votes
1answer
59 views
+50

AndroidAnnotations processing fails in IntelliJ because R.java isn't generated

I think there's some problem with IntelliJ when it generates the R.java file, which leads to a problem in AndroidAnnotations because it can't resolve the resource id for my layout. Here's my ...
1
vote
0answers
41 views
+50

How to create an eclipse-compatible, mavenised Android project?

I need to create a Maven project for my Android application. When I use the normal Android Maven plugin, it produces a file structure with incorrect location of test classes (the test classes lie ...
2
votes
1answer
167 views
+50

Dependency to project foo with type test-jar is not fully supported.

In my maven project I am using a dependency of type test-jar which m2e does not like and gives the following warning. "Dependency to project foo with type test-jar is not fully supported. ...
0
votes
0answers
19 views
+50

Maven 3 “uber jar” how to embed a jar within a jar?

This has been killing me all day. I am working on android / java in eclipse. This is what I want to do I want to embed one of my libraries - DatabaseLibrary within another of my libraries - ...
1
vote
1answer
86 views
+50

Maven is not working in Java 8 when JavaDoc tags are incomplete

Since I use Maven I have been able to build and install in my local repository projects that have incomplete java doc tags (for example, a missing parameter). However, since I migrated to Java 8 ...