Skip to main content
summaryrefslogtreecommitdiffstats
path: root/releng
diff options
context:
space:
mode:
authorSteffen Pingel2011-01-07 04:22:22 +0000
committerSteffen Pingel2011-01-07 04:22:22 +0000
commitcc076c38c2ffea25ea23520b0bc360abebfef9f3 (patch)
tree111206ceadc6cec55183947072cabc10f5590786 /releng
parentc02b7ffc7318f2a0d5bcfe9e56c7d5795c5d01a1 (diff)
downloadorg.eclipse.mylyn.reviews-cc076c38c2ffea25ea23520b0bc360abebfef9f3.tar.gz
org.eclipse.mylyn.reviews-cc076c38c2ffea25ea23520b0bc360abebfef9f3.tar.xz
org.eclipse.mylyn.reviews-cc076c38c2ffea25ea23520b0bc360abebfef9f3.zip
bug 333720: [releng] create feature and update site for Gerrit connector
https://bugs.eclipse.org/bugs/show_bug.cgi?id=333720
Diffstat (limited to 'releng')
-rw-r--r--releng/reviews-site/assembly.xml13
-rw-r--r--releng/reviews-site/index.html42
-rw-r--r--releng/reviews-site/pom.xml63
-rw-r--r--releng/reviews-site/site.xml34
4 files changed, 152 insertions, 0 deletions
diff --git a/releng/reviews-site/assembly.xml b/releng/reviews-site/assembly.xml
new file mode 100644
index 000000000..907a49c00
--- /dev/null
+++ b/releng/reviews-site/assembly.xml
@@ -0,0 +1,13 @@
+<assembly>
+ <id>site</id>
+ <formats>
+ <format>zip</format>
+ </formats>
+ <includeBaseDirectory>false</includeBaseDirectory>
+ <fileSets>
+ <fileSet>
+ <directory>${project.build.directory}/site</directory>
+ <outputDirectory>/</outputDirectory>
+ </fileSet>
+ </fileSets>
+</assembly>
diff --git a/releng/reviews-site/index.html b/releng/reviews-site/index.html
new file mode 100644
index 000000000..6a23cdc02
--- /dev/null
+++ b/releng/reviews-site/index.html
@@ -0,0 +1,42 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<title>Eclipse Mylyn Software Repository</title>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+<meta name="author" content="Eclipse Mylyn Project" />
+<link rel="stylesheet" type="text/css" href="/eclipse/eclipse.org-common/stylesheets/visual.css" media="screen" />
+<link rel="stylesheet" type="text/css" href="/eclipse/eclipse.org-common/stylesheets/layout.css" media="screen" />
+</head>
+<body>
+<div id="header">
+<a href="http://www.eclipse.org/"><img src="/eclipse/eclipse.org-common/stylesheets/header_logo.gif" width="163" height="68" border="0" alt="Eclipse Logo" class="logo" /></a>
+</div>
+<div id="midcolumn">
+
+<p>This software repository URL
+<b><script type="text/javascript">
+<!--
+ document.write(document.URL);
+// -->
+</script></b>
+provides access to the software repository of the
+<a href="http://www.eclipse.org/Mylyn/">Eclipse Mylyn project</a>.
+
+<p>
+<b>Compatibility: </b>This version of Mylyn supports Eclipse 3.5.2 (Galileo SR2) or later.</p>
+</p>
+
+<p>If you are using Eclipse Helios you may also install Mylyn from the Helios repository.
+
+Click <b>Help > Install New Software</b>, type "helios", select the Helios repository URL, select
+<b>Collaboration > Eclipse Mylyn</b> and click <b>Install</b>.
+
+<p>Alternatively you may install Mylyn using the Eclipse Marketplace client: click
+<b>Help > Eclipse Marketplace</b>, enter "Mylyn" into the search field, then click <b>Go</b> and <b>Install</b>.</p>
+
+<p>For more information about installing or updating software, see the
+<a href="http://help.eclipse.org/helios/index.jsp?topic=/org.eclipse.platform.doc.user/tasks/tasks-124.htm">Eclipse Platform Help</a>.</p>
+
+</div>
+</body>
+</html>
diff --git a/releng/reviews-site/pom.xml b/releng/reviews-site/pom.xml
new file mode 100644
index 000000000..eefb3870d
--- /dev/null
+++ b/releng/reviews-site/pom.xml
@@ -0,0 +1,63 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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>
+ <artifactId>mylyn-reviews-parent</artifactId>
+ <groupId>org.eclipse.mylyn.reviews</groupId>
+ <version>0.0.1-SNAPSHOT</version>
+ <relativePath>../..</relativePath>
+ </parent>
+ <artifactId>reviews-site</artifactId>
+ <version>3.7.0-SNAPSHOT</version>
+ <packaging>eclipse-update-site</packaging>
+ <name>Mylyn Reviews for Eclipse 3.5, 3.6 and 3.7</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <version>2.2-beta-4</version>
+ <configuration>
+ <descriptors>
+ <descriptor>assembly.xml</descriptor>
+ </descriptors>
+ </configuration>
+ <executions>
+ <execution>
+ <id>make-assembly</id>
+ <phase>package</phase>
+ <goals>
+ <goal>single</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-resources-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>copy-resources</id>
+ <phase>validate</phase>
+ <goals>
+ <goal>copy-resources</goal>
+ </goals>
+ <configuration>
+ <outputDirectory>${basedir}/target/site</outputDirectory>
+ <resources>
+ <resource>
+ <directory>.</directory>
+ <includes>
+ <include>index.html</include>
+ <include>web/*</include>
+ </includes>
+ </resource>
+ </resources>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
diff --git a/releng/reviews-site/site.xml b/releng/reviews-site/site.xml
new file mode 100644
index 000000000..cfe8014db
--- /dev/null
+++ b/releng/reviews-site/site.xml
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2009 Tasktop Technologies and others.
+ 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
+
+ Contributors:
+ Tasktop Technologies - initial API and implementation
+ -->
+<site pack200="true">
+ <description url="http://download.eclipse.org/mylyn/reviews/0.7">
+ Mylyn Reviews for Eclipse 3.5, 3.6 and 3.7
+ </description>
+ <feature url="features/org.eclipse.gerrit_0.0.0.jar" id="org.eclipse.mylyn.gerrit" version="0.0.0">
+ <category name="Integration"/>
+ </feature>
+ <category-def name="Features" label="Mylyn Reviews Features">
+ <description>
+ The Mylyn Reviews tools.
+ </description>
+ </category-def>
+ <category-def name="Integration" label="Mylyn Reviews Integration">
+ <description>
+ Mylyn Reviews connectors that integrate with review systems.
+ </description>
+ </category-def>
+ <category-def name="SDK" label="Mylyn Reviews Plug-in Development">
+ <description>
+ Source code and documentation for integrators building on Mylyn Reviews.
+ </description>
+ </category-def>
+</site>

Back to the top