Commit a5ca646a authored by Stephan Eberle's avatar Stephan Eberle
Browse files

Added fragment to org.eclipse.sphinx.doc.isv pom.xml to ignore

non-meaningful m2e errors
parent be73b2c2
Loading
Loading
Loading
Loading
+13 −1
Original line number Diff line number Diff line
@@ -111,11 +111,17 @@
				</td>
				<td>An overview of Sphinx' architecture, its components, dependencies, and PDE features.</td>
			</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>
@@ -123,6 +129,12 @@
				</td>
				<td>Documentation of Sphinx concepts, APIs, extension points and their intended usages.</td>
			</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>
+35 −0
Original line number Diff line number Diff line
@@ -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>