Updated errors in Eclipse import all modules
This commit is contained in:
parent
03e97ffe0e
commit
3dd42cb1cd
@ -1,3 +1,7 @@
|
|||||||
### Relevant Articles:
|
### Relevant Articles:
|
||||||
- [Spring Boot Support for jOOQ](http://www.baeldung.com/spring-boot-support-for-jooq)
|
- [Spring Boot Support for jOOQ](http://www.baeldung.com/spring-boot-support-for-jooq)
|
||||||
- [Introduction to jOOQ with Spring](http://www.baeldung.com/jooq-with-spring)
|
- [Introduction to jOOQ with Spring](http://www.baeldung.com/jooq-with-spring)
|
||||||
|
|
||||||
|
In order to fix the error "Plugin execution not covered by lifecycle configuration: org.jooq:jooq-codegen-maven:3.7.3:generate (execution: default, phase: generate-sources)", right-click on the error message and choose "Mark goal generated as ignore in pom.xml". Until version 1.4.x, the maven-plugin-plugin was covered by the default lifecycle mapping that ships with m2e.
|
||||||
|
|
||||||
|
Since version 1.5.x, the m2e default lifecycle mapping no longer covers the maven-plugin-plugin.
|
||||||
|
@ -173,6 +173,39 @@
|
|||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
</plugins>
|
</plugins>
|
||||||
|
<pluginManagement>
|
||||||
|
<plugins>
|
||||||
|
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.eclipse.m2e</groupId>
|
||||||
|
<artifactId>lifecycle-mapping</artifactId>
|
||||||
|
<version>1.0.0</version>
|
||||||
|
<configuration>
|
||||||
|
<lifecycleMappingMetadata>
|
||||||
|
<pluginExecutions>
|
||||||
|
<pluginExecution>
|
||||||
|
<pluginExecutionFilter>
|
||||||
|
<groupId>org.jooq</groupId>
|
||||||
|
<artifactId>
|
||||||
|
jooq-codegen-maven
|
||||||
|
</artifactId>
|
||||||
|
<versionRange>
|
||||||
|
[3.7.3,)
|
||||||
|
</versionRange>
|
||||||
|
<goals>
|
||||||
|
<goal>generate</goal>
|
||||||
|
</goals>
|
||||||
|
</pluginExecutionFilter>
|
||||||
|
<action>
|
||||||
|
<ignore></ignore>
|
||||||
|
</action>
|
||||||
|
</pluginExecution>
|
||||||
|
</pluginExecutions>
|
||||||
|
</lifecycleMappingMetadata>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</pluginManagement>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
<profiles>
|
<profiles>
|
||||||
|
@ -12,3 +12,6 @@
|
|||||||
- [Spring JPA – Multiple Databases](http://www.baeldung.com/spring-data-jpa-multiple-databases)
|
- [Spring JPA – Multiple Databases](http://www.baeldung.com/spring-data-jpa-multiple-databases)
|
||||||
- [Hibernate Second-Level Cache](http://www.baeldung.com/hibernate-second-level-cache)
|
- [Hibernate Second-Level Cache](http://www.baeldung.com/hibernate-second-level-cache)
|
||||||
- [Spring, Hibernate and a JNDI Datasource](http://www.baeldung.com/spring-persistence-jpa-jndi-datasource)
|
- [Spring, Hibernate and a JNDI Datasource](http://www.baeldung.com/spring-persistence-jpa-jndi-datasource)
|
||||||
|
|
||||||
|
To ignore "No persistence xml file found in project", you do:
|
||||||
|
Project -> Properties -> Java Persistance -> JPA -> Error/Warnings -> Select Ignore on "No persistence xml file found in project"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user