Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 30f2aef1899c464f5cf8f010ce80bfc06ddce633 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="UTF-8"?>
<project>
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<artifactId>org.eclipse.papyrus</artifactId>
		<groupId>org.eclipse.papyrus</groupId>
		<version>1.1.0-SNAPSHOT</version>
		<relativePath>../../../releng/top-pom-extras.xml</relativePath>
	</parent>
	<groupId>org.eclipse.papyrus</groupId>
	<artifactId>org.eclipse.papyrus.extra.epf.richtext.feature</artifactId>
	<version>1.1.0-SNAPSHOT</version>
	<packaging>eclipse-feature</packaging>
	<repositories>
		<repository>
			<id>org.eclipse.epf.richtext_1.5.1.6-update-site</id>
			<layout>p2</layout>
			<url>http://download.eclipse.org/modeling/mdt/papyrus/updates/epf/main</url>
		</repository>
	</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.ui" />
						<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>

Back to the top