Skip to main content
summaryrefslogtreecommitdiffstats
blob: 8ca31f7a99a451bb17bdcf090e631a0a633c8756 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<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.26.0-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>

   <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="edu.umd.cs.findbugs.plugin.eclipse" />
							</excludes>
						</configuration>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
	
	<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.ide.feature" />
										<feature id="org.eclipse.osee.ats.ide.demo.feature" />
									</excludes>
								</configuration>
							</execution>
						</executions>
					</plugin>
				</plugins>
			</build>
		</profile>
	</profiles>
</project>

Back to the top