Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I m using eclipse Juno

Version: Juno Release Build id: 20120614-1722

POM.xml shows error as: Plugin execution not covered by lifecycle configuration: org.datanucleus:maven- datanucleus-plugin:3.0.1:enhance (execution: default, phase: compile)

<build>
    <plugins>
        <plugin>
            <groupId>org.datanucleus</groupId>
            <artifactId>maven-datanucleus-plugin</artifactId>
            <version>3.0.1</version>
            <configuration>
                <fork>false</fork>
                <log4jConfiguration>${basedir}/log4j.properties</log4jConfiguration>
                <verbose>true</verbose>
                <enhancerName>ASM</enhancerName>
                <!-- <api>JPA</api> -->
                <persistenceUnitName>applicatonPersistenceUnit</persistenceUnitName>
            </configuration>
            <executions>
                <execution>
                    <phase>compile</phase>
                    <goals>
                        <goal>enhance</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>

Please advice... Thanks

share|improve this question

1 Answer

up vote -1 down vote accepted

ok I found the answer here: http://code.google.com/p/google-web-toolkit/wiki/WorkingWithMaven#Eclipse_Indigo/Juno_Java_EE_IDE

share|improve this answer
Can you please explain the solution you found? – Chris Hinshaw Apr 28 at 2:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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