diff options
author | Igor Fedorenko | 2012-08-13 09:19:34 -0400 |
---|---|---|
committer | Dani Megert | 2012-09-14 05:16:06 -0400 |
commit | 1fa36b70b6177d9287b2cf7ee046b2857c5b6da4 (patch) | |
tree | 8e66086a822f95bf5f1330b748ac1b308c33cb11 | |
parent | 3e867f60eea0347a7f0590c203d3d26d19e6c424 (diff) | |
download | eclipse.jdt.ui-1fa36b70b6177d9287b2cf7ee046b2857c5b6da4.zip eclipse.jdt.ui-1fa36b70b6177d9287b2cf7ee046b2857c5b6da4.tar.gz eclipse.jdt.ui-1fa36b70b6177d9287b2cf7ee046b2857c5b6da4.tar.xz |
Bug 386646 - build against declared and/or observed bundle runtime execution environment
-rw-r--r-- | org.eclipse.jdt.junit.runtime/pom.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/org.eclipse.jdt.junit.runtime/pom.xml b/org.eclipse.jdt.junit.runtime/pom.xml index 9414e3d..319e90f 100644 --- a/org.eclipse.jdt.junit.runtime/pom.xml +++ b/org.eclipse.jdt.junit.runtime/pom.xml @@ -22,4 +22,16 @@ <artifactId>org.eclipse.jdt.junit.runtime</artifactId> <version>3.4.300-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> + <build> + <plugins> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>target-platform-configuration</artifactId> + <configuration> + <!-- observed BREE as of Juno --> + <executionEnvironment>J2SE-1.4</executionEnvironment> + </configuration> + </plugin> + </plugins> + </build> </project> |