Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Williams2015-05-25 15:53:31 +0000
committerRoland Grunberg2015-05-26 20:51:07 +0000
commit7852654a98430d7efbb8cb92e96ed027f47e538a (patch)
tree7368c7e3e6bca7776e805fe3c0d7cd6ed5814a01 /javadocs/org.eclipse.linuxtools.javadocs-feature/pom.xml
parent883a859e8c99be62b68d1c38678d1962fe11df09 (diff)
downloadorg.eclipse.linuxtools-7852654a98430d7efbb8cb92e96ed027f47e538a.tar.gz
org.eclipse.linuxtools-7852654a98430d7efbb8cb92e96ed027f47e538a.tar.xz
org.eclipse.linuxtools-7852654a98430d7efbb8cb92e96ed027f47e538a.zip
Bug 467355: Initial contribution of Javadocs plugin.
A simple plugin that crawls a Javadocs folder and displays the HTML in that folder within the Eclipse help system. Change-Id: Id404e882a477153aabcc468451127bb55e4fae8d Signed-off-by: Eric Williams <ericwill@redhat.com> Reviewed-on: https://git.eclipse.org/r/48645 Tested-by: Hudson CI Reviewed-by: Roland Grunberg <rgrunber@redhat.com> Tested-by: Roland Grunberg <rgrunber@redhat.com>
Diffstat (limited to 'javadocs/org.eclipse.linuxtools.javadocs-feature/pom.xml')
-rw-r--r--javadocs/org.eclipse.linuxtools.javadocs-feature/pom.xml46
1 files changed, 46 insertions, 0 deletions
diff --git a/javadocs/org.eclipse.linuxtools.javadocs-feature/pom.xml b/javadocs/org.eclipse.linuxtools.javadocs-feature/pom.xml
new file mode 100644
index 0000000000..2591bf69d4
--- /dev/null
+++ b/javadocs/org.eclipse.linuxtools.javadocs-feature/pom.xml
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (C) 2015, Red Hat, Inc.
+
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Public License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/legal/epl-v10.html
+-->
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <artifactId>linuxtools-javadocs-parent</artifactId>
+ <groupId>org.eclipse.linuxtools.javadocs</groupId>
+ <version>4.0.0-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>org.eclipse.linuxtools.javadocs.feature</artifactId>
+ <packaging>eclipse-feature</packaging>
+ <version>1.0.0-SNAPSHOT</version>
+
+ <name>Linux Tools Javadocs Feature</name>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-p2-plugin</artifactId>
+ <version>${tycho-version}</version>
+ <executions>
+ <execution>
+ <id>attached-p2-metadata</id>
+ <phase>package</phase>
+ <goals>
+ <goal>p2-metadata</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>
+

Back to the top