Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.mylyn.tasks-site/.project11
-rw-r--r--org.eclipse.mylyn.tasks-site/assembly.xml13
-rw-r--r--org.eclipse.mylyn.tasks-site/pom.xml37
-rw-r--r--org.eclipse.mylyn.tasks-site/site.xml46
-rw-r--r--pom.xml1
5 files changed, 108 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.tasks-site/.project b/org.eclipse.mylyn.tasks-site/.project
new file mode 100644
index 000000000..c7851aa84
--- /dev/null
+++ b/org.eclipse.mylyn.tasks-site/.project
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.eclipse.mylyn.tasks-site</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ </buildSpec>
+ <natures>
+ </natures>
+</projectDescription>
diff --git a/org.eclipse.mylyn.tasks-site/assembly.xml b/org.eclipse.mylyn.tasks-site/assembly.xml
new file mode 100644
index 000000000..907a49c00
--- /dev/null
+++ b/org.eclipse.mylyn.tasks-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/org.eclipse.mylyn.tasks-site/pom.xml b/org.eclipse.mylyn.tasks-site/pom.xml
new file mode 100644
index 000000000..2f8d36c46
--- /dev/null
+++ b/org.eclipse.mylyn.tasks-site/pom.xml
@@ -0,0 +1,37 @@
+<?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>org.eclipse.mylyn.tasks-parent</artifactId>
+ <groupId>org.eclipse.mylyn.tasks</groupId>
+ <version>3.7.0-SNAPSHOT</version>
+ </parent>
+ <artifactId>org.eclipse.mylyn.tasks-site</artifactId>
+ <packaging>eclipse-update-site</packaging>
+ <name>Mylyn Tasks</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <version>2.2.1</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>
+ </plugins>
+ </build>
+</project>
diff --git a/org.eclipse.mylyn.tasks-site/site.xml b/org.eclipse.mylyn.tasks-site/site.xml
new file mode 100644
index 000000000..e0c661a43
--- /dev/null
+++ b/org.eclipse.mylyn.tasks-site/site.xml
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2011 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>
+ Mylyn Tasks
+ </description>
+ <feature url="features/org.eclipse.mylyn_feature_0.0.0.jar" id="org.eclipse.mylyn_feature" version="0.0.0">
+ <category name="Features"/>
+ </feature>
+ <feature url="features/org.eclipse.mylyn.bugzilla_feature_0.0.0.jar" id="org.eclipse.mylyn.bugzilla_feature" version="0.0.0">
+ <category name="Integration"/>
+ </feature>
+ <feature url="features/org.eclipse.mylyn.trac_feature_0.0.0.jar" id="org.eclipse.mylyn.trac_feature" version="0.0.0">
+ <category name="Integration"/>
+ </feature>
+ <feature url="features/org.eclipse.mylyn.sdk_feature_0.0.0.jar" id="org.eclipse.mylyn.sdk_feature" version="0.0.0">
+ <category name="SDK"/>
+ </feature>
+ <feature url="features/org.eclipse.mylyn.test_feature_0.0.0.jar" id="org.eclipse.mylyn.test_feature" version="0.0.0">
+ <category name="SDK"/>
+ </feature>
+ <category-def name="Features" label="Mylyn Tasks Features">
+ <description>
+ Tools.
+ </description>
+ </category-def>
+ <category-def name="Integration" label="Mylyn Tasks Integrations">
+ <description>
+ Connectors that integrate with ALM systems.
+ </description>
+ </category-def>
+ <category-def name="SDK" label="Mylyn Tasks SDK and Framework">
+ <description>
+ Source code and documentation for integrators.
+ </description>
+ </category-def>
+</site>
diff --git a/pom.xml b/pom.xml
index 7d332745b..014b9f230 100644
--- a/pom.xml
+++ b/pom.xml
@@ -53,6 +53,7 @@
<module>org.eclipse.mylyn.oslc.core</module>
<module>org.eclipse.mylyn.oslc.tests</module>
<module>org.eclipse.mylyn.oslc.ui</module>
+ <module>org.eclipse.mylyn.tasks-site</module>
<module>org.eclipse.mylyn.tasks.bugs</module>
<module>org.eclipse.mylyn.tasks.core</module>
<module>org.eclipse.mylyn.tasks.search</module>

Back to the top