Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Aniszczyk2011-03-09 21:23:35 +0000
committerAndrew Overholt2011-03-09 21:25:23 +0000
commitc4208347aea3d0438372d2b3491837be3aa13c93 (patch)
tree0528ed4e079c7b17d990a87433b14efa348119f9
parent4b0ff9e94405298704150bd91cfd40d9671783ee (diff)
downloadorg.eclipse.linuxtools-c4208347aea3d0438372d2b3491837be3aa13c93.tar.gz
org.eclipse.linuxtools-c4208347aea3d0438372d2b3491837be3aa13c93.tar.xz
org.eclipse.linuxtools-c4208347aea3d0438372d2b3491837be3aa13c93.zip
Add repo generation for the man module
Signed-off-by: Chris Aniszczyk <zx@redhat.com>
-rw-r--r--man/org.eclipse.linuxtools.man-site/.gitignore5
-rw-r--r--man/org.eclipse.linuxtools.man-site/pom.xml29
-rw-r--r--man/org.eclipse.linuxtools.man-site/site.xml17
-rw-r--r--man/pom.xml1
4 files changed, 52 insertions, 0 deletions
diff --git a/man/org.eclipse.linuxtools.man-site/.gitignore b/man/org.eclipse.linuxtools.man-site/.gitignore
new file mode 100644
index 0000000000..8d94ef8deb
--- /dev/null
+++ b/man/org.eclipse.linuxtools.man-site/.gitignore
@@ -0,0 +1,5 @@
+bin
+@dot
+javaCompiler...args
+build.xml
+target
diff --git a/man/org.eclipse.linuxtools.man-site/pom.xml b/man/org.eclipse.linuxtools.man-site/pom.xml
new file mode 100644
index 0000000000..a5dc68893a
--- /dev/null
+++ b/man/org.eclipse.linuxtools.man-site/pom.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (C) 2011, Chris Aniszczyk <caniszczyk@gmail.com>
+
+ 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 xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.eclipse.linuxtools</groupId>
+ <artifactId>linuxtools-parent</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>org.eclipse.linuxtools.man-site</artifactId>
+ <packaging>eclipse-update-site</packaging>
+
+ <name>Eclipse LinuxTools Man Site (Incubation)</name>
+ <!-- see http://issues.sonatype.org/browse/TYCHO-313 -->
+ <version>0.0.1-SNAPSHOT</version>
+
+</project>
diff --git a/man/org.eclipse.linuxtools.man-site/site.xml b/man/org.eclipse.linuxtools.man-site/site.xml
new file mode 100644
index 0000000000..2704fadb7c
--- /dev/null
+++ b/man/org.eclipse.linuxtools.man-site/site.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<site>
+ <description url="Eclipse LinuxTools Man Page Plug-in">
+ Displays a man page in a view or fetching it's content for embedded display purposes.
+ </description>
+ <feature url="features/org.eclipse.linuxtools.man_0.0.0.qualifier.jar" id="org.eclipse.linuxtools.man" version="0.0.0" patch="true">
+ <category name="Eclipse Linux Tools (Incubation)"/>
+ </feature>
+ <feature url="features/org.eclipse.linuxtools.man.sources_0.0.0.qualifier.jar" id="org.eclipse.linuxtools.man.source" version="0.0.0" patch="true">
+ <category name="Eclipse Linux Tools (Incubation)"/>
+ </feature>
+ <category-def name="Eclipse Linux Tools (Incubation)" label="Eclipse Linux Tools (Incubation)">
+ <description>
+ Eclipse Linux Tools (Incubation)
+ </description>
+ </category-def>
+</site>
diff --git a/man/pom.xml b/man/pom.xml
index 98bd096e81..4ef11d6e59 100644
--- a/man/pom.xml
+++ b/man/pom.xml
@@ -48,6 +48,7 @@
<module>org.eclipse.linuxtools.man</module>
<module>org.eclipse.linuxtools.man-feature</module>
<module>org.eclipse.linuxtools.man.source-feature</module>
+ <module>org.eclipse.linuxtools.man-site</module>
</modules>
</project>

Back to the top