Whenever the m2eclipse plugin wants to download the source files of a Maven dependency I'm getting the following error:

java.lang.NullPointerException
    at org.eclipse.m2e.jdt.internal.BuildPathManager.attachSourcesAndJavadoc(BuildPathManager.java:845)
    at org.eclipse.m2e.jdt.internal.DownloadSourcesJob.run(DownloadSourcesJob.java:165)
    at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)

Do you know what the problem could be?


According to the source code the problem seems to be in this line:

      cp[i] = JavaCore.newLibraryEntry(entry.getPath(), srcPath, null, entry.getAccessRules(), //
          attributes.toArray(new IClasspathAttribute[attributes.size()]), // 
          entry.isExported());

I'm using the new Eclipse Indigo with the current Maven version.

link|improve this question

2  
This seems more like a bug that a typical SO question. I'd recommend raising a bug on bugzilla for this, or sending a message to the m2e-users mailing list. You'd probably get a better response there. – Andrew Eisenberg Sep 30 '11 at 16:30
Where are these going to be downloaded from ? Is that with all the jars or with a specific jar ? Are you behind any proxy setting. – Shahzeb Oct 4 '11 at 0:49
what version of maven and m2eclipse are you using? – broschb Oct 4 '11 at 3:10
feedback

2 Answers

What is your pom? I had once such problem, which was caused, AFAIR by some bug in version 2.7 of maven-eclipse-plugin. I had to downgrade to version 2.6. I don't remember good what the problem was, but it was something with profiles which specified excludes (either for test classes or resources).

        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-eclipse-plugin</artifactId>
          <version>2.6</version>
        </plugin>
link|improve this answer
3  
He uses m2eclipse, not the maven-eclipse-plugin. m2eclipse is a plugin for Eclipse, maven-eclipse-plugin is a plugin for Maven. – dunni Sep 26 '11 at 9:46
feedback

I believe I ran into a problem with a similar symptom, but totally different cause, where the entry's getPath() was returning null.

If you turn on debug output in Preferences... Maven, I suspect you'll be shown the path.

If it's just one jar, you might check the dependency's pom and then check to see if the source jar is where it should be. It shouldn't blow up like this, of course, but stranger things have happened.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.