Added fragment to org.eclipse.sphinx.doc.isv pom.xml to ignore
non-meaningful m2e errors
diff --git a/docs/org.eclipse.sphinx.doc.isv/help/Sphinx/Sphinx.html b/docs/org.eclipse.sphinx.doc.isv/help/Sphinx/Sphinx.html
index be0ebaf..300c35c 100644
--- a/docs/org.eclipse.sphinx.doc.isv/help/Sphinx/Sphinx.html
+++ b/docs/org.eclipse.sphinx.doc.isv/help/Sphinx/Sphinx.html
@@ -113,9 +113,15 @@
 			</tr>
 			<tr>
 				<td>
+					<a href="https://wiki.eclipse.org/Sphinx/digests" title="Sphinx/digests" target="sphinx_external">Feature Digests</a>
+				</td>
+				<td>Condensed descriptions and usage information about Sphinx features.</td>
+			</tr>
+			<tr>
+				<td>
 					<a href="https://wiki.eclipse.org/Sphinx/tutorials" title="Sphinx/tutorials" target="sphinx_external">Tutorials </a>
 				</td>
-				<td>Tutorials about Sphinx.</td>
+				<td>Detailed guides and examples explaining how to achieve certain tasks with Sphinx.</td>
 			</tr>
 			<tr>
 				<td>
@@ -125,6 +131,12 @@
 			</tr>
 			<tr>
 				<td>
+					<a href="https://wiki.eclipse.org/Sphinx/new_and_noteworthy" title="Sphinx/new_and_noteworthy" target="sphinx_external">New &amp; Noteworthy</a>
+				</td>
+				<td>New and noteworthy features in latest Sphinx releases.</td>
+			</tr>
+			<tr>
+				<td>
 					<a href="http://www.eclipse.org/forums/eclipse.sphinx" target="sphinx_external">Adopter Forum </a>
 				</td>
 				<td>Forum for asking questions, discussing ideas, finding answers.</td>
diff --git a/docs/org.eclipse.sphinx.doc.isv/pom.xml b/docs/org.eclipse.sphinx.doc.isv/pom.xml
index e8c1ec4..2520859 100644
--- a/docs/org.eclipse.sphinx.doc.isv/pom.xml
+++ b/docs/org.eclipse.sphinx.doc.isv/pom.xml
@@ -82,5 +82,40 @@
 				</executions>

 			</plugin>

 		</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.apache.maven.plugins

+										</groupId>

+										<artifactId>

+											maven-antrun-plugin

+										</artifactId>

+										<versionRange>

+											[1.7,)

+										</versionRange>

+										<goals>

+											<goal>run</goal>

+										</goals>

+									</pluginExecutionFilter>

+									<action>

+										<ignore></ignore>

+									</action>

+								</pluginExecution>

+							</pluginExecutions>

+						</lifecycleMappingMetadata>

+					</configuration>

+				</plugin>

+			</plugins>

+		</pluginManagement>

 	</build>

 </project>