Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoberto E. Escobar2013-06-27 00:09:27 +0000
committerGerrit Code Review @ Eclipse.org2013-07-01 18:03:08 +0000
commit0651cf8d5d19e8922f357df133978a70bbeaf130 (patch)
tree3803b78c3a58d890c676c392aa3fba22b158db6f /features/org.eclipse.osee.client.all.feature
parentad4053baace8388b33c7d977b42a95b3157b1253 (diff)
downloadorg.eclipse.osee-0651cf8d5d19e8922f357df133978a70bbeaf130.tar.gz
org.eclipse.osee-0651cf8d5d19e8922f357df133978a70bbeaf130.tar.xz
org.eclipse.osee-0651cf8d5d19e8922f357df133978a70bbeaf130.zip
feature[ats_3LFWB]: Enable source feature generation
Diffstat (limited to 'features/org.eclipse.osee.client.all.feature')
-rw-r--r--features/org.eclipse.osee.client.all.feature/pom.xml38
1 files changed, 38 insertions, 0 deletions
diff --git a/features/org.eclipse.osee.client.all.feature/pom.xml b/features/org.eclipse.osee.client.all.feature/pom.xml
index 2ae17d18a1f..b6e4ce51c17 100644
--- a/features/org.eclipse.osee.client.all.feature/pom.xml
+++ b/features/org.eclipse.osee.client.all.feature/pom.xml
@@ -14,4 +14,42 @@
<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.feature" />
+ <feature id="org.eclipse.osee.core.runtime.feature" />
+ <feature id="org.eclipse.osee.coverage.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> \ No newline at end of file

Back to the top