Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSopot Cela2016-09-26 10:16:25 +0000
committerDani Megert2016-09-26 10:30:36 +0000
commit5bcb7ac5045743f9ec17895a9a12318dd90ea4cb (patch)
treeea2d98cee208a040d2ee43fef458d3775a5dc90d /pom.xml
parent8871738e5b595e7715499161b04980d9f16df820 (diff)
downloadeclipse.platform.text-5bcb7ac5045743f9ec17895a9a12318dd90ea4cb.tar.gz
eclipse.platform.text-5bcb7ac5045743f9ec17895a9a12318dd90ea4cb.tar.xz
eclipse.platform.text-5bcb7ac5045743f9ec17895a9a12318dd90ea4cb.zip
Bug 497871 - Generic and extensible text editor
This change creates a new extensible text editor, with extension points for: * contentAssist * hover * syntax highlighting Some unit tests show examples of extensions. You can load an IDE with the suggested change (including org.eclipse.ui.editors.tests) and get a syntax highlighter, a hover support and some content assist on the plain text editor. Bug: 497871 Bug: 496117 Bug: 496115 Bug: 496300 Signed-off-by: Mickael Istria <mistria@redhat.com> Signed-off-by: Sopot Cela <scela@redhat.com> Change-Id: I2eec71e4620364aa11c500ec07e54c693863cf44
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml13
1 files changed, 8 insertions, 5 deletions
diff --git a/pom.xml b/pom.xml
index 6f270efb2bf..fa14d0f9d72 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/org/documents/edl-v10.php
-
+
Contributors:
Igor Fedorenko - initial implementation
-->
@@ -28,11 +28,11 @@
<tycho.scmUrl>scm:git:git://git.eclipse.org/gitroot/platform/eclipse.platform.text.git</tycho.scmUrl>
</properties>
- <!--
- To build individual bundles, we specify a repository where to find parent pom,
+ <!--
+ To build individual bundles, we specify a repository where to find parent pom,
in case it is not in local maven cache already
- and that parent pom also has fuller individual-bundle profile
- defined that is combined with this one. -->
+ and that parent pom also has fuller individual-bundle profile
+ defined that is combined with this one. -->
<profiles>
<profile>
<id>build-individual-bundles</id>
@@ -65,6 +65,9 @@
<module>org.eclipse.ui.editors</module>
<module>org.eclipse.search</module>
<module>org.eclipse.ui.examples.javaeditor</module>
+ <!-- Generic editor -->
+ <module>org.eclipse.ui.genericeditor</module>
+ <module>org.eclipse.ui.genericeditor.tests</module>
</modules>
</project>

Back to the top