Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2021-04-24 07:07:51 +0000
committerAlexander Kurtakov2021-04-24 07:24:12 +0000
commit45855a865e7777c7797ef73367f903ab04a51494 (patch)
tree5206824212620adce98a08d7e964310907fafa6f
parent42fcea372ad237bc43e78496c1cd38343dfad785 (diff)
downloadeclipse.platform.team-45855a865e7777c7797ef73367f903ab04a51494.tar.gz
eclipse.platform.team-45855a865e7777c7797ef73367f903ab04a51494.tar.xz
eclipse.platform.team-45855a865e7777c7797ef73367f903ab04a51494.zip
Bug 566638 - Make linux proxy support work for all archs
Update the classpath settings to really be Java 11. Change-Id: Id6d538f474c4a9f593b25d6a67f8e65d7a40b53e Reviewed-on: https://git.eclipse.org/r/c/platform/eclipse.platform.team/+/179783 Tested-by: Platform Bot <platform-bot@eclipse.org> Reviewed-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--bundles/org.eclipse.core.net.linux/.classpath4
-rw-r--r--bundles/org.eclipse.core.net.linux/.settings/org.eclipse.jdt.core.prefs9
2 files changed, 11 insertions, 2 deletions
diff --git a/bundles/org.eclipse.core.net.linux/.classpath b/bundles/org.eclipse.core.net.linux/.classpath
index 01836c484..e801ebfb4 100644
--- a/bundles/org.eclipse.core.net.linux/.classpath
+++ b/bundles/org.eclipse.core.net.linux/.classpath
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
- <classpathentry kind="src" path="src"/>
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
+ <classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
</classpath>
diff --git a/bundles/org.eclipse.core.net.linux/.settings/org.eclipse.jdt.core.prefs b/bundles/org.eclipse.core.net.linux/.settings/org.eclipse.jdt.core.prefs
new file mode 100644
index 000000000..c9545f06a
--- /dev/null
+++ b/bundles/org.eclipse.core.net.linux/.settings/org.eclipse.jdt.core.prefs
@@ -0,0 +1,9 @@
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=11
+org.eclipse.jdt.core.compiler.compliance=11
+org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
+org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
+org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
+org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning
+org.eclipse.jdt.core.compiler.release=enabled
+org.eclipse.jdt.core.compiler.source=11

Back to the top