Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Aniszczyk2011-01-17 16:56:39 +0000
committerChris Aniszczyk2011-01-17 22:41:05 +0000
commit8322857a739a69759ee8e7841a8487d0a1661792 (patch)
tree0f2d63954cbb4890be0a42a87cbca62a61340836 /org.eclipse.egit.mylyn.ui/META-INF/MANIFEST.MF
parent02aa9fed64c721611ec11ae4bf1472d0210ae436 (diff)
downloadegit-8322857a739a69759ee8e7841a8487d0a1661792.tar.gz
egit-8322857a739a69759ee8e7841a8487d0a1661792.tar.xz
egit-8322857a739a69759ee8e7841a8487d0a1661792.zip
Add initial EGit Mylyn integration
Generates the commit dialog message by getting the active mylyn task. The commit message is generated by combinging the title with description and commit message template defined in the mylyn preferences. Bug: 306001 Change-Id: I344546626c8cb089c019db08afa400e4847e6fc4 Signed-off-by: Chris Aniszczyk <caniszczyk@gmail.com> Signed-off-by: Benjamin Muskalla <benjamin.muskalla@tasktop.com>
Diffstat (limited to 'org.eclipse.egit.mylyn.ui/META-INF/MANIFEST.MF')
-rw-r--r--org.eclipse.egit.mylyn.ui/META-INF/MANIFEST.MF26
1 files changed, 26 insertions, 0 deletions
diff --git a/org.eclipse.egit.mylyn.ui/META-INF/MANIFEST.MF b/org.eclipse.egit.mylyn.ui/META-INF/MANIFEST.MF
new file mode 100644
index 0000000000..af13c90d2b
--- /dev/null
+++ b/org.eclipse.egit.mylyn.ui/META-INF/MANIFEST.MF
@@ -0,0 +1,26 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: %Bundle-Name
+Bundle-SymbolicName: org.eclipse.egit.mylyn.ui;singleton:=true
+Bundle-Version: 0.11.0.qualifier
+Bundle-Activator: org.eclipse.egit.internal.mylyn.ui.EGitMylynUI
+Bundle-Vendor: %Bundle-Vendor
+Require-Bundle: org.eclipse.team.core,
+ org.eclipse.jface,
+ org.eclipse.core.resources,
+ org.eclipse.core.runtime,
+ org.eclipse.ui.navigator.resources,
+ org.eclipse.ui.workbench,
+ org.eclipse.mylyn.monitor.core;bundle-version="[3.0.0,4.0.0)",
+ org.eclipse.mylyn.tasks.core;bundle-version="[3.0.0,4.0.0)",
+ org.eclipse.mylyn.tasks.ui;bundle-version="[3.0.0,4.0.0)",
+ org.eclipse.mylyn.team.ui;bundle-version="[3.0.0,4.0.0)",
+ org.eclipse.mylyn.resources.ui;bundle-version="[3.0.0,4.0.0)",
+ org.eclipse.mylyn.context.core;bundle-version="[3.0.0,4.0.0)",
+ org.eclipse.egit.core;bundle-version="[0.11.0,1.0.0)",
+ org.eclipse.egit.ui;bundle-version="[0.11.0,1.0.0)"
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Bundle-ActivationPolicy: lazy
+Bundle-Localization: plugin
+Export-Package: org.eclipse.egit.internal.mylyn.ui;version="0.11.0";x-internal:=true,
+ org.eclipse.egit.internal.mylyn.ui.commit;version="0.11.0";x-internal:=true

Back to the top