Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Tessier2014-11-28 14:44:40 +0000
committerGerrit Code Review @ Eclipse.org2014-11-28 14:44:40 +0000
commit65ff2b3cfb8593685cca4e2efe2117fe14ecf5d2 (patch)
tree0b028eefa5d29b703834af6a20b08af3993b8326
parenta0318e80c9df48a327fe1c274c51a423a7fc75a5 (diff)
parent024b1e6cb93cd8a5152eddfa86c362b9a355c891 (diff)
downloadorg.eclipse.papyrus-65ff2b3cfb8593685cca4e2efe2117fe14ecf5d2.tar.gz
org.eclipse.papyrus-65ff2b3cfb8593685cca4e2efe2117fe14ecf5d2.tar.xz
org.eclipse.papyrus-65ff2b3cfb8593685cca4e2efe2117fe14ecf5d2.zip
Merge "Bug 399853 - [Widgets] Papyrus shall enable to edit the comment body with a rich-text editor - exclude epf plugins from source-feature" into bugs/399853-richtext
-rw-r--r--features/papyrus-extra-features/org.eclipse.papyrus.extra.epf.richtext.feature/pom.xml27
1 files changed, 26 insertions, 1 deletions
diff --git a/features/papyrus-extra-features/org.eclipse.papyrus.extra.epf.richtext.feature/pom.xml b/features/papyrus-extra-features/org.eclipse.papyrus.extra.epf.richtext.feature/pom.xml
index 1739195eafc..6c7d7546703 100644
--- a/features/papyrus-extra-features/org.eclipse.papyrus.extra.epf.richtext.feature/pom.xml
+++ b/features/papyrus-extra-features/org.eclipse.papyrus.extra.epf.richtext.feature/pom.xml
@@ -17,5 +17,30 @@
<layout>p2</layout>
<url>http://download.eclipse.org/modeling/mdt/papyrus/updates/epf/main</url>
</repository>
- </repositories>
+ </repositories>
+ <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

Back to the top