Skip to main content
summaryrefslogtreecommitdiffstats
blob: abaff5a6e64d39be28e6f91aeb793e7861db3de1 (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
48
49
50
51
52
53
54
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

	<modelVersion>4.0.0</modelVersion>

	<parent>
		<groupId>org.eclipse.osee</groupId>
		<artifactId>org.eclipse.osee.client.all.parent</artifactId>
		<version>0.25.1-SNAPSHOT</version>
		<relativePath>../../plugins/org.eclipse.osee.client.all.parent</relativePath>
	</parent>

	<artifactId>org.eclipse.osee.client.all.feature</artifactId>
	<packaging>eclipse-feature</packaging>
	<name>OSEE Client All Feature (Incubation)</name>

	<profiles>
		<profile>
			<id>osee-client-skip-source-features</id>
			<activation>
				<property>
					<name>osee-build-stage</name>
					<value>osee-client-products</value>
				</property>
			</activation>
			<build>
				<plugins>
					<plugin>
						<groupId>org.eclipse.tycho.extras</groupId>
						<artifactId>tycho-source-feature-plugin</artifactId>
						<executions>
							<execution>
								<phase>package</phase>
								<id>source-feature</id>
								<goals>
									<goal>source-feature</goal>
								</goals>
								<configuration>
									<excludes>
										<feature id="org.eclipse.osee.client.feature" />
										<feature id="org.eclipse.osee.client.ote.rdt.feature" />
										<feature id="org.eclipse.osee.core.runtime.feature" />
										<feature id="org.eclipse.osee.ats.feature" />
										<feature id="org.eclipse.osee.ats.client.demo.feature" />
									</excludes>
								</configuration>
							</execution>
						</executions>
					</plugin>
				</plugins>
			</build>
		</profile>
	</profiles>
</project>

Back to the top