diff options
author | ptessier | 2014-12-02 10:11:38 +0000 |
---|---|---|
committer | ptessier | 2014-12-02 10:11:38 +0000 |
commit | f924e9e5f52e6939e482627aab416cf7b9c92f8b (patch) | |
tree | 97cf11e8f30b1917d1ec091d7c571a41b27b9cfd | |
parent | 6c433979bc33ed766d9eeb9484707ea5a134dfcf (diff) | |
download | org.eclipse.papyrus-f924e9e5f52e6939e482627aab416cf7b9c92f8b.tar.gz org.eclipse.papyrus-f924e9e5f52e6939e482627aab416cf7b9c92f8b.tar.xz org.eclipse.papyrus-f924e9e5f52e6939e482627aab416cf7b9c92f8b.zip |
399853: [Widgets] Papyrus shall enable to edit the comment body with a
rich-text editor
https://bugs.eclipse.org/bugs/show_bug.cgi?id=399853
Change-Id: Ibc8974eb9af4ac7d1738eb5f69402793f49d780e
-rw-r--r-- | features/papyrus-extra-features/org.eclipse.papyrus.extra.feature/pom.xml | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/features/papyrus-extra-features/org.eclipse.papyrus.extra.feature/pom.xml b/features/papyrus-extra-features/org.eclipse.papyrus.extra.feature/pom.xml index c74823b7353..4106116852d 100644 --- a/features/papyrus-extra-features/org.eclipse.papyrus.extra.feature/pom.xml +++ b/features/papyrus-extra-features/org.eclipse.papyrus.extra.feature/pom.xml @@ -11,5 +11,29 @@ <groupId>org.eclipse.papyrus</groupId> <version>1.0.1-SNAPSHOT</version> <packaging>eclipse-feature</packaging> - + <build> + <plugins> + <plugin> + <groupId>org.eclipse.tycho.extras</groupId> + <artifactId>tycho-source-feature-plugin</artifactId> + <version>${tychoExtrasVersion}</version> + <executions> + <execution> + <id>source-feature</id> + <phase>package</phase> + <goals> + <goal>source-feature</goal> + </goals> + </execution> + </executions> + <configuration> + <excludes> + <plugin id="org.eclipse.epf.common" /> + <plugin id="org.eclipse.epf.common.html" /> + <plugin id="org.eclipse.epf.richtext" /> + </excludes> + </configuration> + </plugin> + </plugins> + </build> </project>
\ No newline at end of file |