| author | Thanh Ha | 2012-08-13 16:35:18 (EDT) |
|---|---|---|
| committer | Paul Webster | 2012-09-12 09:50:28 (EDT) |
| commit | bce968bd4b7e202d960e8eb652246ffe40929022 (patch) (side-by-side diff) | |
| tree | 9d27337d99d3fac3beee243a73527d07f8f01872 | |
| parent | 86dac214a186e2a7a43b008947edabceb5a908e6 (diff) | |
| download | eclipse.platform.ui-bce968bd4b7e202d960e8eb652246ffe40929022.zip eclipse.platform.ui-bce968bd4b7e202d960e8eb652246ffe40929022.tar.gz eclipse.platform.ui-bce968bd4b7e202d960e8eb652246ffe40929022.tar.bz2 | |
Bug 386646 - workaround for java.nio import error
| -rw-r--r-- | bundles/org.eclipse.ui.workbench/pom.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/bundles/org.eclipse.ui.workbench/pom.xml b/bundles/org.eclipse.ui.workbench/pom.xml index 2805646..6c82095 100644 --- a/bundles/org.eclipse.ui.workbench/pom.xml +++ b/bundles/org.eclipse.ui.workbench/pom.xml @@ -23,4 +23,17 @@ <artifactId>org.eclipse.ui.workbench</artifactId> <version>3.8.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> + + <build> + <plugins> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>target-platform-configuration</artifactId> + <configuration> + <!-- th: workaround for issue with java.nio import error --> + <executionEnvironment>J2SE-1.4</executionEnvironment> + </configuration> + </plugin> + </plugins> + </build> </project> |

