Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThanh Ha2012-07-25 13:35:12 +0000
committerPaul Webster2012-09-12 13:27:49 +0000
commit8ebbbf332a94d320dd1b34aff7494c35c20cbd76 (patch)
treec66bc97c58948f8e1f7e2ebf9b318341b88a1cb5
parent27d031f2279330146954b0d84f6d26292716a9ae (diff)
downloadeclipse.platform.ui-8ebbbf332a94d320dd1b34aff7494c35c20cbd76.tar.gz
eclipse.platform.ui-8ebbbf332a94d320dd1b34aff7494c35c20cbd76.tar.xz
eclipse.platform.ui-8ebbbf332a94d320dd1b34aff7494c35c20cbd76.zip
Bug 378234 - CBI should produce comparable build output repo
-rw-r--r--bundles/org.eclipse.jface.databinding/pom.xml12
-rw-r--r--bundles/org.eclipse.ui.views.properties.tabbed/pom.xml12
-rw-r--r--bundles/org.eclipse.ui/pom.xml12
3 files changed, 36 insertions, 0 deletions
diff --git a/bundles/org.eclipse.jface.databinding/pom.xml b/bundles/org.eclipse.jface.databinding/pom.xml
index 004288086e7..590e05e252f 100644
--- a/bundles/org.eclipse.jface.databinding/pom.xml
+++ b/bundles/org.eclipse.jface.databinding/pom.xml
@@ -23,4 +23,16 @@
<artifactId>org.eclipse.jface.databinding</artifactId>
<version>1.6.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>target-platform-configuration</artifactId>
+ <configuration>
+ <executionEnvironment>CDC-1.0/Foundation-1.0</executionEnvironment>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
</project>
diff --git a/bundles/org.eclipse.ui.views.properties.tabbed/pom.xml b/bundles/org.eclipse.ui.views.properties.tabbed/pom.xml
index f05c90bf45e..2476dc4eb7b 100644
--- a/bundles/org.eclipse.ui.views.properties.tabbed/pom.xml
+++ b/bundles/org.eclipse.ui.views.properties.tabbed/pom.xml
@@ -23,4 +23,16 @@
<artifactId>org.eclipse.ui.views.properties.tabbed</artifactId>
<version>3.5.300-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>target-platform-configuration</artifactId>
+ <configuration>
+ <executionEnvironment>CDC-1.0/Foundation-1.0</executionEnvironment>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
</project>
diff --git a/bundles/org.eclipse.ui/pom.xml b/bundles/org.eclipse.ui/pom.xml
index b5404744668..9fd28bcea0b 100644
--- a/bundles/org.eclipse.ui/pom.xml
+++ b/bundles/org.eclipse.ui/pom.xml
@@ -23,4 +23,16 @@
<artifactId>org.eclipse.ui</artifactId>
<version>3.103.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>target-platform-configuration</artifactId>
+ <configuration>
+ <executionEnvironment>CDC-1.0/Foundation-1.0</executionEnvironment>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
</project>

Back to the top