Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Aniszczyk2011-03-23 23:04:34 +0000
committerChris Aniszczyk2011-03-23 23:04:34 +0000
commit8758fb2dd13ed6031ead593e4fc092c9c2e7f1eb (patch)
treec20c312bdf7da473e6fe3e435c0670cd8dc0b82a /org.eclipse.mylyn.github-feature
downloadegit-github-8758fb2dd13ed6031ead593e4fc092c9c2e7f1eb.tar.gz
egit-github-8758fb2dd13ed6031ead593e4fc092c9c2e7f1eb.tar.xz
egit-github-8758fb2dd13ed6031ead593e4fc092c9c2e7f1eb.zip
Initial commit of Mylyn GitHub Integration
Signed-off-by: Chris Aniszczyk <caniszczyk@gmail.com>
Diffstat (limited to 'org.eclipse.mylyn.github-feature')
-rw-r--r--org.eclipse.mylyn.github-feature/.gitignore2
-rw-r--r--org.eclipse.mylyn.github-feature/.project17
-rw-r--r--org.eclipse.mylyn.github-feature/build.properties1
-rw-r--r--org.eclipse.mylyn.github-feature/feature.xml46
-rw-r--r--org.eclipse.mylyn.github-feature/pom.xml23
5 files changed, 89 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.github-feature/.gitignore b/org.eclipse.mylyn.github-feature/.gitignore
new file mode 100644
index 00000000..d567ba01
--- /dev/null
+++ b/org.eclipse.mylyn.github-feature/.gitignore
@@ -0,0 +1,2 @@
+bin
+target
diff --git a/org.eclipse.mylyn.github-feature/.project b/org.eclipse.mylyn.github-feature/.project
new file mode 100644
index 00000000..54d8c9d5
--- /dev/null
+++ b/org.eclipse.mylyn.github-feature/.project
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.eclipse.mylyn.github-feature</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.pde.FeatureBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.FeatureNature</nature>
+ </natures>
+</projectDescription>
diff --git a/org.eclipse.mylyn.github-feature/build.properties b/org.eclipse.mylyn.github-feature/build.properties
new file mode 100644
index 00000000..82ab19c6
--- /dev/null
+++ b/org.eclipse.mylyn.github-feature/build.properties
@@ -0,0 +1 @@
+bin.includes = feature.xml
diff --git a/org.eclipse.mylyn.github-feature/feature.xml b/org.eclipse.mylyn.github-feature/feature.xml
new file mode 100644
index 00000000..cac9ad47
--- /dev/null
+++ b/org.eclipse.mylyn.github-feature/feature.xml
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.eclipse.mylyn.github.feature"
+ label="Eclipse EGit Mylyn GitHub Feature"
+ version="0.1.0.qualifier"
+ provider-name="Eclipse EGit">
+
+ <description url="http://github.com/smilebase/org.eclipse.mylyn.github">
+ Eclipse Mylyn to GitHub connector.
+ </description>
+
+ <copyright url="http://smilebase.github.com/org.eclipse.mylyn.github/">
+ Copyright 2009
+
+Christian Trutz (christian.trutz@gmail.com)
+Brian Gianforcaro (b.gianfo@gmail.com)
+ </copyright>
+
+ <license url="http://www.apache.org/licenses/LICENSE-2.0.html">
+ Apache License
+Version 2.0, January 2004
+ </license>
+
+ <requires>
+ <import plugin="org.eclipse.core.runtime" version="3.5.0" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.ui" version="3.5.0" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.ui.forms" version="3.4.0" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.mylyn.tasks.core" version="3.2.0" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.mylyn.tasks.ui" version="3.2.0" match="greaterOrEqual"/>
+ </requires>
+
+ <plugin
+ id="org.eclipse.mylyn.github.core"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+ <plugin
+ id="org.eclipse.mylyn.github.ui"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+</feature>
diff --git a/org.eclipse.mylyn.github-feature/pom.xml b/org.eclipse.mylyn.github-feature/pom.xml
new file mode 100644
index 00000000..f782928c
--- /dev/null
+++ b/org.eclipse.mylyn.github-feature/pom.xml
@@ -0,0 +1,23 @@
+<?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">
+ <parent>
+ <artifactId>github-parent</artifactId>
+ <groupId>org.eclipse.mylyn.github</groupId>
+ <version>0.1.0-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>feature</artifactId>
+ <packaging>eclipse-feature</packaging>
+ <name>Eclipse EGit Mylyn GitHub Feature (Incubation)</name>
+</project>

Back to the top