diff --git a/spring-jooq/README.md b/spring-jooq/README.md
index 79718e74c6..2777aa450c 100644
--- a/spring-jooq/README.md
+++ b/spring-jooq/README.md
@@ -1,3 +1,7 @@
### Relevant Articles:
- [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)
+
+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.
diff --git a/spring-jooq/pom.xml b/spring-jooq/pom.xml
index 96a3de11db..bf60acd6f6 100644
--- a/spring-jooq/pom.xml
+++ b/spring-jooq/pom.xml
@@ -173,6 +173,39 @@
+
+
+
+
+ org.eclipse.m2e
+ lifecycle-mapping
+ 1.0.0
+
+
+
+
+
+ org.jooq
+
+ jooq-codegen-maven
+
+
+ [3.7.3,)
+
+
+ generate
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/spring-jpa/README.md b/spring-jpa/README.md
index 4568c0bc7f..bc768bee22 100644
--- a/spring-jpa/README.md
+++ b/spring-jpa/README.md
@@ -12,3 +12,6 @@
- [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)
- [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"