diff options
author | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2010-10-27 17:26:41 +0000 |
---|---|---|
committer | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2010-10-27 17:26:41 +0000 |
commit | 9084f7e6a1d145f7034fc3c43163ea2fecf0df5b (patch) | |
tree | 82545020d0b375812e9d50b03cf0b714226ed161 /maven-plugins/trunk | |
parent | 3a8f85af068bd03be8d24ad7ece99c36ccb43066 (diff) |
Disable util that doesn't work with Equinox 3.5.0 and isn't apparently used.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1028048 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'maven-plugins/trunk')
-rw-r--r-- | maven-plugins/trunk/maven-bundle-plugin/src/main/java/org/apache/tuscany/maven/bundle/plugin/BundleUtil.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/maven-plugins/trunk/maven-bundle-plugin/src/main/java/org/apache/tuscany/maven/bundle/plugin/BundleUtil.java b/maven-plugins/trunk/maven-bundle-plugin/src/main/java/org/apache/tuscany/maven/bundle/plugin/BundleUtil.java index 04fa342161..8f280e59e9 100644 --- a/maven-plugins/trunk/maven-bundle-plugin/src/main/java/org/apache/tuscany/maven/bundle/plugin/BundleUtil.java +++ b/maven-plugins/trunk/maven-bundle-plugin/src/main/java/org/apache/tuscany/maven/bundle/plugin/BundleUtil.java @@ -595,7 +595,7 @@ public final class BundleUtil { result.put(Constants.OSGI_JAVA_PROFILE_NAME, "OSGi/Minimum-1.1"); return result; } - +/* doesn't work with Equinox 3.5.0 public static void loadVMProfile(Properties properties) { Properties profileProps = findVMProfile(properties); String systemExports = properties.getProperty(Constants.OSGI_FRAMEWORK_SYSTEM_PACKAGES); @@ -625,6 +625,7 @@ public final class BundleUtil { properties.put(Constants.FRAMEWORK_EXECUTIONENVIRONMENT, ee); } } +*/ private static URL getNextBestProfile(String javaEdition, Version javaVersion) { if (javaVersion == null || (javaEdition != J2SE && javaEdition != JAVASE)) |