1
votes

I have newly installed Eclipse Kepler on Mac machine. When I import J2EE project thru maven scripts, it says "No marketplace entries found to handle maven-jaxb2-plugin:0.8.0:generate in Eclipse. Please see Help for more information."

downloaded and placed maven-jaxb2-plugin jar (v 0.8.0) in dropin directory and restarted eclipse with -clean -refresh but that did not help. Any suggestions to resolve this issue?

1

1 Answers

0
votes

This problem can be fixed by upgrading to the latest version of mavjn-jaxb2-plugin. Open the pom.xml and search for jaxb2-maven-plugin to find the version associated with it.

            <groupId>org.codehaus.mojo</groupId>
            <artifactId>jaxb2-maven-plugin</artifactId>
            <version>1.5</version>

At the time of this writing, the latest version is 1.5. After the jaxb2 version in the pom, import the project as an existing maven project. Eclipse Kepler seems to be smart enough to download the latest version of jaxb2 automatically.