From bfeba8f3c940d1df631f0a688da55952d0437ac5 Mon Sep 17 00:00:00 2001 From: Alexander Kurtakov Date: Tue, 30 Oct 2018 18:16:06 +0200 Subject: Move core.net fragmeents out of the host. Having them in there confuses jgit timestamp provider making it complain if there is a change in fragment to also ask for version bump of the host. Change-Id: Ie644415a0a8ddb9522fbcb539cd3b4bdc74b90d1 Signed-off-by: Alexander Kurtakov --- .../org.eclipse.core.net.linux.x86_64/.classpath | 7 ++ bundles/org.eclipse.core.net.linux.x86_64/.project | 28 +++++++ .../.settings/org.eclipse.core.runtime.prefs | 2 + .../.settings/org.eclipse.jdt.core.prefs | 12 +++ .../BUILD_INFO.txt | 10 +++ .../META-INF/MANIFEST.MF | 11 +++ .../org.eclipse.core.net.linux.x86_64/about.html | 36 +++++++++ .../build.properties | 22 ++++++ .../fragment.properties | 15 ++++ .../libgnomeproxy-1.0.0.so | Bin 0 -> 259848 bytes bundles/org.eclipse.core.net.linux.x86_64/pom.xml | 81 +++++++++++++++++++++ .../src/org/eclipse/core/net/ProxyProvider.java | 19 +++++ .../org.eclipse.core.net.win32.x86_64/.classpath | 7 ++ bundles/org.eclipse.core.net.win32.x86_64/.project | 29 ++++++++ .../.settings/org.eclipse.core.runtime.prefs | 2 + .../.settings/org.eclipse.jdt.core.prefs | 12 +++ .../BUILD_INFO.txt | 10 +++ .../META-INF/MANIFEST.MF | 11 +++ .../org.eclipse.core.net.win32.x86_64/about.html | 36 +++++++++ .../build.properties | 22 ++++++ .../fragment.properties | 15 ++++ .../jWinHttp-1.0.0.dll | Bin 0 -> 44032 bytes bundles/org.eclipse.core.net.win32.x86_64/pom.xml | 42 +++++++++++ .../src/org/eclipse/core/net/ProxyProvider.java | 19 +++++ bundles/org.eclipse.core.net/fragments/.gitignore | 9 --- .../org.eclipse.core.net.linux.x86_64/.classpath | 7 -- .../org.eclipse.core.net.linux.x86_64/.project | 28 ------- .../.settings/org.eclipse.core.runtime.prefs | 2 - .../.settings/org.eclipse.jdt.core.prefs | 12 --- .../BUILD_INFO.txt | 10 --- .../META-INF/MANIFEST.MF | 11 --- .../org.eclipse.core.net.linux.x86_64/about.html | 36 --------- .../build.properties | 22 ------ .../fragment.properties | 15 ---- .../libgnomeproxy-1.0.0.so | Bin 259848 -> 0 bytes .../org.eclipse.core.net.linux.x86_64/pom.xml | 81 --------------------- .../src/org/eclipse/core/net/ProxyProvider.java | 19 ----- .../org.eclipse.core.net.win32.x86_64/.classpath | 7 -- .../org.eclipse.core.net.win32.x86_64/.project | 29 -------- .../.settings/org.eclipse.core.runtime.prefs | 2 - .../.settings/org.eclipse.jdt.core.prefs | 12 --- .../BUILD_INFO.txt | 10 --- .../META-INF/MANIFEST.MF | 11 --- .../org.eclipse.core.net.win32.x86_64/about.html | 36 --------- .../build.properties | 22 ------ .../fragment.properties | 15 ---- .../jWinHttp-1.0.0.dll | Bin 44032 -> 0 bytes .../org.eclipse.core.net.win32.x86_64/pom.xml | 42 ----------- .../src/org/eclipse/core/net/ProxyProvider.java | 19 ----- pom.xml | 6 +- 50 files changed, 451 insertions(+), 460 deletions(-) create mode 100644 bundles/org.eclipse.core.net.linux.x86_64/.classpath create mode 100644 bundles/org.eclipse.core.net.linux.x86_64/.project create mode 100644 bundles/org.eclipse.core.net.linux.x86_64/.settings/org.eclipse.core.runtime.prefs create mode 100644 bundles/org.eclipse.core.net.linux.x86_64/.settings/org.eclipse.jdt.core.prefs create mode 100644 bundles/org.eclipse.core.net.linux.x86_64/BUILD_INFO.txt create mode 100644 bundles/org.eclipse.core.net.linux.x86_64/META-INF/MANIFEST.MF create mode 100644 bundles/org.eclipse.core.net.linux.x86_64/about.html create mode 100644 bundles/org.eclipse.core.net.linux.x86_64/build.properties create mode 100644 bundles/org.eclipse.core.net.linux.x86_64/fragment.properties create mode 100644 bundles/org.eclipse.core.net.linux.x86_64/libgnomeproxy-1.0.0.so create mode 100644 bundles/org.eclipse.core.net.linux.x86_64/pom.xml create mode 100644 bundles/org.eclipse.core.net.linux.x86_64/src/org/eclipse/core/net/ProxyProvider.java create mode 100644 bundles/org.eclipse.core.net.win32.x86_64/.classpath create mode 100644 bundles/org.eclipse.core.net.win32.x86_64/.project create mode 100644 bundles/org.eclipse.core.net.win32.x86_64/.settings/org.eclipse.core.runtime.prefs create mode 100644 bundles/org.eclipse.core.net.win32.x86_64/.settings/org.eclipse.jdt.core.prefs create mode 100644 bundles/org.eclipse.core.net.win32.x86_64/BUILD_INFO.txt create mode 100644 bundles/org.eclipse.core.net.win32.x86_64/META-INF/MANIFEST.MF create mode 100644 bundles/org.eclipse.core.net.win32.x86_64/about.html create mode 100644 bundles/org.eclipse.core.net.win32.x86_64/build.properties create mode 100644 bundles/org.eclipse.core.net.win32.x86_64/fragment.properties create mode 100644 bundles/org.eclipse.core.net.win32.x86_64/jWinHttp-1.0.0.dll create mode 100644 bundles/org.eclipse.core.net.win32.x86_64/pom.xml create mode 100644 bundles/org.eclipse.core.net.win32.x86_64/src/org/eclipse/core/net/ProxyProvider.java delete mode 100644 bundles/org.eclipse.core.net/fragments/.gitignore delete mode 100644 bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/.classpath delete mode 100644 bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/.project delete mode 100644 bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/.settings/org.eclipse.core.runtime.prefs delete mode 100644 bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/.settings/org.eclipse.jdt.core.prefs delete mode 100644 bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/BUILD_INFO.txt delete mode 100644 bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/META-INF/MANIFEST.MF delete mode 100644 bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/about.html delete mode 100644 bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/build.properties delete mode 100644 bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/fragment.properties delete mode 100644 bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/libgnomeproxy-1.0.0.so delete mode 100644 bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/pom.xml delete mode 100644 bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/src/org/eclipse/core/net/ProxyProvider.java delete mode 100644 bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/.classpath delete mode 100644 bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/.project delete mode 100644 bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/.settings/org.eclipse.core.runtime.prefs delete mode 100644 bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/.settings/org.eclipse.jdt.core.prefs delete mode 100644 bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/BUILD_INFO.txt delete mode 100644 bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/META-INF/MANIFEST.MF delete mode 100644 bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/about.html delete mode 100644 bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/build.properties delete mode 100644 bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/fragment.properties delete mode 100644 bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/jWinHttp-1.0.0.dll delete mode 100644 bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/pom.xml delete mode 100644 bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/src/org/eclipse/core/net/ProxyProvider.java diff --git a/bundles/org.eclipse.core.net.linux.x86_64/.classpath b/bundles/org.eclipse.core.net.linux.x86_64/.classpath new file mode 100644 index 000000000..01836c484 --- /dev/null +++ b/bundles/org.eclipse.core.net.linux.x86_64/.classpath @@ -0,0 +1,7 @@ + + + + + + + diff --git a/bundles/org.eclipse.core.net.linux.x86_64/.project b/bundles/org.eclipse.core.net.linux.x86_64/.project new file mode 100644 index 000000000..a22a02fce --- /dev/null +++ b/bundles/org.eclipse.core.net.linux.x86_64/.project @@ -0,0 +1,28 @@ + + + org.eclipse.core.net.linux.x86_64 + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.pde.ManifestBuilder + + + + + org.eclipse.pde.SchemaBuilder + + + + + + org.eclipse.pde.PluginNature + org.eclipse.jdt.core.javanature + + diff --git a/bundles/org.eclipse.core.net.linux.x86_64/.settings/org.eclipse.core.runtime.prefs b/bundles/org.eclipse.core.net.linux.x86_64/.settings/org.eclipse.core.runtime.prefs new file mode 100644 index 000000000..5a0ad22d2 --- /dev/null +++ b/bundles/org.eclipse.core.net.linux.x86_64/.settings/org.eclipse.core.runtime.prefs @@ -0,0 +1,2 @@ +eclipse.preferences.version=1 +line.separator=\n diff --git a/bundles/org.eclipse.core.net.linux.x86_64/.settings/org.eclipse.jdt.core.prefs b/bundles/org.eclipse.core.net.linux.x86_64/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 000000000..a698e5967 --- /dev/null +++ b/bundles/org.eclipse.core.net.linux.x86_64/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,12 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled +org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 +org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve +org.eclipse.jdt.core.compiler.compliance=1.8 +org.eclipse.jdt.core.compiler.debug.lineNumber=generate +org.eclipse.jdt.core.compiler.debug.localVariable=generate +org.eclipse.jdt.core.compiler.debug.sourceFile=generate +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.source=1.8 diff --git a/bundles/org.eclipse.core.net.linux.x86_64/BUILD_INFO.txt b/bundles/org.eclipse.core.net.linux.x86_64/BUILD_INFO.txt new file mode 100644 index 000000000..a312cc736 --- /dev/null +++ b/bundles/org.eclipse.core.net.linux.x86_64/BUILD_INFO.txt @@ -0,0 +1,10 @@ +Native Build Info: +------------------ + +platform: linux.gtk.x86_64 +built by: Eric Williams, ericwill@redhat.com +build date: 24-May-2018 +OS Name: RHEL Workstation 7.5 +OS Version: Linux 3.10.0 +Compiler version: gcc (GCC) 4.8.5 +Java version: Java(TM) 8 Runtime Environment, Standard Edition (1.8.0.171) \ No newline at end of file diff --git a/bundles/org.eclipse.core.net.linux.x86_64/META-INF/MANIFEST.MF b/bundles/org.eclipse.core.net.linux.x86_64/META-INF/MANIFEST.MF new file mode 100644 index 000000000..bce4a7b96 --- /dev/null +++ b/bundles/org.eclipse.core.net.linux.x86_64/META-INF/MANIFEST.MF @@ -0,0 +1,11 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: %fragmentName +Bundle-Vendor: %providerName +Bundle-Localization: fragment +Bundle-SymbolicName: org.eclipse.core.net.linux.x86_64;singleton:=true +Bundle-Version: 1.2.300.qualifier +Fragment-Host: org.eclipse.core.net;bundle-version="1.1.0" +Eclipse-PlatformFilter: (& (osgi.os=linux) (osgi.arch=x86_64)) +Bundle-RequiredExecutionEnvironment: JavaSE-1.8 +Automatic-Module-Name: org.eclipse.core.net.linux.x86_64 diff --git a/bundles/org.eclipse.core.net.linux.x86_64/about.html b/bundles/org.eclipse.core.net.linux.x86_64/about.html new file mode 100644 index 000000000..164f781a8 --- /dev/null +++ b/bundles/org.eclipse.core.net.linux.x86_64/about.html @@ -0,0 +1,36 @@ + + + + +About + + +

About This Content

+ +

November 30, 2017

+

License

+ +

+ The Eclipse Foundation makes available all content in this plug-in + ("Content"). Unless otherwise indicated below, the Content + is provided to you under the terms and conditions of the Eclipse + Public License Version 2.0 ("EPL"). A copy of the EPL is + available at http://www.eclipse.org/legal/epl-2.0. + For purposes of the EPL, "Program" will mean the Content. +

+ +

+ If you did not receive this Content directly from the Eclipse + Foundation, the Content is being redistributed by another party + ("Redistributor") and different terms and conditions may + apply to your use of any object code in the Content. Check the + Redistributor's license that was provided with the Content. If no such + license exists, contact the Redistributor. Unless otherwise indicated + below, the terms and conditions of the EPL still apply to any source + code in the Content and such source code may be obtained at http://www.eclipse.org. +

+ + + \ No newline at end of file diff --git a/bundles/org.eclipse.core.net.linux.x86_64/build.properties b/bundles/org.eclipse.core.net.linux.x86_64/build.properties new file mode 100644 index 000000000..03ab15c87 --- /dev/null +++ b/bundles/org.eclipse.core.net.linux.x86_64/build.properties @@ -0,0 +1,22 @@ +############################################################################### +# Copyright (c) 2008, 2009 IBM Corporation and others. +# +# This program and the accompanying materials +# are made available under the terms of the Eclipse Public License 2.0 +# which accompanies this distribution, and is available at +# https://www.eclipse.org/legal/epl-2.0/ +# +# SPDX-License-Identifier: EPL-2.0 +# +# Contributors: +# IBM Corporation - initial API and implementation +############################################################################### +bin.includes = fragment.properties,\ + .,\ + META-INF/,\ + about.html,\ + bin/,\ + libgnomeproxy-1.0.0.so +src.includes = about.html +generateSourceBundle=false +source.. = src/ diff --git a/bundles/org.eclipse.core.net.linux.x86_64/fragment.properties b/bundles/org.eclipse.core.net.linux.x86_64/fragment.properties new file mode 100644 index 000000000..225a330c1 --- /dev/null +++ b/bundles/org.eclipse.core.net.linux.x86_64/fragment.properties @@ -0,0 +1,15 @@ +############################################################################### +# Copyright (c) 2008, 2009 IBM Corporation and others. +# +# This program and the accompanying materials +# are made available under the terms of the Eclipse Public License 2.0 +# which accompanies this distribution, and is available at +# https://www.eclipse.org/legal/epl-2.0/ +# +# SPDX-License-Identifier: EPL-2.0 +# +# Contributors: +# IBM Corporation - initial API and implementation +############################################################################### +fragmentName = Proxy for Linux x86_64 +providerName = Eclipse.org diff --git a/bundles/org.eclipse.core.net.linux.x86_64/libgnomeproxy-1.0.0.so b/bundles/org.eclipse.core.net.linux.x86_64/libgnomeproxy-1.0.0.so new file mode 100644 index 000000000..ab71687a2 Binary files /dev/null and b/bundles/org.eclipse.core.net.linux.x86_64/libgnomeproxy-1.0.0.so differ diff --git a/bundles/org.eclipse.core.net.linux.x86_64/pom.xml b/bundles/org.eclipse.core.net.linux.x86_64/pom.xml new file mode 100644 index 000000000..f1490713e --- /dev/null +++ b/bundles/org.eclipse.core.net.linux.x86_64/pom.xml @@ -0,0 +1,81 @@ + + + + 4.0.0 + + eclipse.platform.team + eclipse.platform.team + 4.10.0-SNAPSHOT + ../../ + + org.eclipse.core + org.eclipse.core.net.linux.x86_64 + 1.2.300-SNAPSHOT + eclipse-plugin + + + + + org.eclipse.tycho + target-platform-configuration + + + + linux + gtk + x86_64 + + + + + + + + + + build-natives + + + + native + gtk.linux.x86_64 + + + + + + maven-antrun-plugin + + + natives + process-resources + + + + + + + + + + + + run + + + + + + + + + diff --git a/bundles/org.eclipse.core.net.linux.x86_64/src/org/eclipse/core/net/ProxyProvider.java b/bundles/org.eclipse.core.net.linux.x86_64/src/org/eclipse/core/net/ProxyProvider.java new file mode 100644 index 000000000..f2f9a4bcc --- /dev/null +++ b/bundles/org.eclipse.core.net.linux.x86_64/src/org/eclipse/core/net/ProxyProvider.java @@ -0,0 +1,19 @@ +/******************************************************************************* + * Copyright (c) 2008, 2009 Oakland Software Incorporated and others + * + * This program and the accompanying materials + * are made available under the terms of the Eclipse Public License 2.0 + * which accompanies this distribution, and is available at + * https://www.eclipse.org/legal/epl-2.0/ + * + * SPDX-License-Identifier: EPL-2.0 + * + * Contributors: + * Oakland Software Incorporated - initial API and implementation + *******************************************************************************/ +package org.eclipse.core.net; + +import org.eclipse.core.internal.net.proxy.unix.UnixProxyProvider; + +public class ProxyProvider extends UnixProxyProvider { +} diff --git a/bundles/org.eclipse.core.net.win32.x86_64/.classpath b/bundles/org.eclipse.core.net.win32.x86_64/.classpath new file mode 100644 index 000000000..eca7bdba8 --- /dev/null +++ b/bundles/org.eclipse.core.net.win32.x86_64/.classpath @@ -0,0 +1,7 @@ + + + + + + + diff --git a/bundles/org.eclipse.core.net.win32.x86_64/.project b/bundles/org.eclipse.core.net.win32.x86_64/.project new file mode 100644 index 000000000..4f4816faf --- /dev/null +++ b/bundles/org.eclipse.core.net.win32.x86_64/.project @@ -0,0 +1,29 @@ + + + org.eclipse.core.net.win32.x86_64 + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.pde.ManifestBuilder + + + + + org.eclipse.pde.SchemaBuilder + + + + + + org.eclipse.pde.PluginNature + org.eclipse.jdt.core.javanature + + + diff --git a/bundles/org.eclipse.core.net.win32.x86_64/.settings/org.eclipse.core.runtime.prefs b/bundles/org.eclipse.core.net.win32.x86_64/.settings/org.eclipse.core.runtime.prefs new file mode 100644 index 000000000..5a0ad22d2 --- /dev/null +++ b/bundles/org.eclipse.core.net.win32.x86_64/.settings/org.eclipse.core.runtime.prefs @@ -0,0 +1,2 @@ +eclipse.preferences.version=1 +line.separator=\n diff --git a/bundles/org.eclipse.core.net.win32.x86_64/.settings/org.eclipse.jdt.core.prefs b/bundles/org.eclipse.core.net.win32.x86_64/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 000000000..a698e5967 --- /dev/null +++ b/bundles/org.eclipse.core.net.win32.x86_64/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,12 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled +org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 +org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve +org.eclipse.jdt.core.compiler.compliance=1.8 +org.eclipse.jdt.core.compiler.debug.lineNumber=generate +org.eclipse.jdt.core.compiler.debug.localVariable=generate +org.eclipse.jdt.core.compiler.debug.sourceFile=generate +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.source=1.8 diff --git a/bundles/org.eclipse.core.net.win32.x86_64/BUILD_INFO.txt b/bundles/org.eclipse.core.net.win32.x86_64/BUILD_INFO.txt new file mode 100644 index 000000000..41aa77dc1 --- /dev/null +++ b/bundles/org.eclipse.core.net.win32.x86_64/BUILD_INFO.txt @@ -0,0 +1,10 @@ +Native Build Info: +------------------ + +platform: win32.x86_64 +built by: Pawel.Pogorzelski@pl.ibm.com +build date: 05-Mar-2009 +OS Name: Microsoft Windows XP Professional SP 2 +OS Version: 5.1.2600 Service Pack 2 Build 2600 +Compiler version: Microsoft Visual Studio 2008 Professional 9.0.21022.8 RTM +Java version: Standard Edition (build 1.4.2-b28) diff --git a/bundles/org.eclipse.core.net.win32.x86_64/META-INF/MANIFEST.MF b/bundles/org.eclipse.core.net.win32.x86_64/META-INF/MANIFEST.MF new file mode 100644 index 000000000..05b035770 --- /dev/null +++ b/bundles/org.eclipse.core.net.win32.x86_64/META-INF/MANIFEST.MF @@ -0,0 +1,11 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: %fragmentName +Bundle-Vendor: %providerName +Bundle-Localization: fragment +Bundle-SymbolicName: org.eclipse.core.net.win32.x86_64;singleton:=true +Bundle-Version: 1.1.300.qualifier +Fragment-Host: org.eclipse.core.net;bundle-version="1.1.0" +Eclipse-PlatformFilter: (& (osgi.os=win32) (osgi.arch=x86_64)) +Bundle-RequiredExecutionEnvironment: JavaSE-1.8 +Automatic-Module-Name: org.eclipse.core.net.win32.x86_64 diff --git a/bundles/org.eclipse.core.net.win32.x86_64/about.html b/bundles/org.eclipse.core.net.win32.x86_64/about.html new file mode 100644 index 000000000..164f781a8 --- /dev/null +++ b/bundles/org.eclipse.core.net.win32.x86_64/about.html @@ -0,0 +1,36 @@ + + + + +About + + +

About This Content

+ +

November 30, 2017

+

License

+ +

+ The Eclipse Foundation makes available all content in this plug-in + ("Content"). Unless otherwise indicated below, the Content + is provided to you under the terms and conditions of the Eclipse + Public License Version 2.0 ("EPL"). A copy of the EPL is + available at http://www.eclipse.org/legal/epl-2.0. + For purposes of the EPL, "Program" will mean the Content. +

+ +

+ If you did not receive this Content directly from the Eclipse + Foundation, the Content is being redistributed by another party + ("Redistributor") and different terms and conditions may + apply to your use of any object code in the Content. Check the + Redistributor's license that was provided with the Content. If no such + license exists, contact the Redistributor. Unless otherwise indicated + below, the terms and conditions of the EPL still apply to any source + code in the Content and such source code may be obtained at http://www.eclipse.org. +

+ + + \ No newline at end of file diff --git a/bundles/org.eclipse.core.net.win32.x86_64/build.properties b/bundles/org.eclipse.core.net.win32.x86_64/build.properties new file mode 100644 index 000000000..55c2b946b --- /dev/null +++ b/bundles/org.eclipse.core.net.win32.x86_64/build.properties @@ -0,0 +1,22 @@ +############################################################################### +# Copyright (c) 2009 IBM Corporation and others. +# +# This program and the accompanying materials +# are made available under the terms of the Eclipse Public License 2.0 +# which accompanies this distribution, and is available at +# https://www.eclipse.org/legal/epl-2.0/ +# +# SPDX-License-Identifier: EPL-2.0 +# +# Contributors: +# IBM Corporation - initial API and implementation +############################################################################### +bin.includes = fragment.properties,\ + .,\ + about.html,\ + META-INF/,\ + bin/,\ + jWinHttp-1.0.0.dll +generateSourceBundle=false +src.includes = about.html +source.. = src/ diff --git a/bundles/org.eclipse.core.net.win32.x86_64/fragment.properties b/bundles/org.eclipse.core.net.win32.x86_64/fragment.properties new file mode 100644 index 000000000..ff4e4defc --- /dev/null +++ b/bundles/org.eclipse.core.net.win32.x86_64/fragment.properties @@ -0,0 +1,15 @@ +############################################################################### +# Copyright (c) 2009 IBM Corporation and others. +# +# This program and the accompanying materials +# are made available under the terms of the Eclipse Public License 2.0 +# which accompanies this distribution, and is available at +# https://www.eclipse.org/legal/epl-2.0/ +# +# SPDX-License-Identifier: EPL-2.0 +# +# Contributors: +# IBM Corporation - initial API and implementation +############################################################################### +fragmentName = Proxy for Windows +providerName = Eclipse.org diff --git a/bundles/org.eclipse.core.net.win32.x86_64/jWinHttp-1.0.0.dll b/bundles/org.eclipse.core.net.win32.x86_64/jWinHttp-1.0.0.dll new file mode 100644 index 000000000..00771efc1 Binary files /dev/null and b/bundles/org.eclipse.core.net.win32.x86_64/jWinHttp-1.0.0.dll differ diff --git a/bundles/org.eclipse.core.net.win32.x86_64/pom.xml b/bundles/org.eclipse.core.net.win32.x86_64/pom.xml new file mode 100644 index 000000000..a8161dbcf --- /dev/null +++ b/bundles/org.eclipse.core.net.win32.x86_64/pom.xml @@ -0,0 +1,42 @@ + + + + 4.0.0 + + eclipse.platform.team + eclipse.platform.team + 4.10.0-SNAPSHOT + ../../ + + org.eclipse.core + org.eclipse.core.net.win32.x86_64 + 1.1.300-SNAPSHOT + eclipse-plugin + + + + + org.eclipse.tycho + target-platform-configuration + + + + win32 + win32 + x86_64 + + + + + + + diff --git a/bundles/org.eclipse.core.net.win32.x86_64/src/org/eclipse/core/net/ProxyProvider.java b/bundles/org.eclipse.core.net.win32.x86_64/src/org/eclipse/core/net/ProxyProvider.java new file mode 100644 index 000000000..e32aae27d --- /dev/null +++ b/bundles/org.eclipse.core.net.win32.x86_64/src/org/eclipse/core/net/ProxyProvider.java @@ -0,0 +1,19 @@ +/******************************************************************************* + * Copyright (c) 2009 IBM Corporation and others. + * + * This program and the accompanying materials + * are made available under the terms of the Eclipse Public License 2.0 + * which accompanies this distribution, and is available at + * https://www.eclipse.org/legal/epl-2.0/ + * + * SPDX-License-Identifier: EPL-2.0 + * + * Contributors: + * IBM Corporation - initial API and implementation + *******************************************************************************/ +package org.eclipse.core.net; + +import org.eclipse.core.internal.net.WindowsProxyProvider; + +public class ProxyProvider extends WindowsProxyProvider { +} diff --git a/bundles/org.eclipse.core.net/fragments/.gitignore b/bundles/org.eclipse.core.net/fragments/.gitignore deleted file mode 100644 index 7690ac256..000000000 --- a/bundles/org.eclipse.core.net/fragments/.gitignore +++ /dev/null @@ -1,9 +0,0 @@ -/.project -/*/*/bin/ -*~ -*.rej -*.bak -javacore.* -heapdump.* -core.* -Snap.* diff --git a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/.classpath b/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/.classpath deleted file mode 100644 index 01836c484..000000000 --- a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/.classpath +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/.project b/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/.project deleted file mode 100644 index a22a02fce..000000000 --- a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/.project +++ /dev/null @@ -1,28 +0,0 @@ - - - org.eclipse.core.net.linux.x86_64 - - - - - - org.eclipse.jdt.core.javabuilder - - - - - org.eclipse.pde.ManifestBuilder - - - - - org.eclipse.pde.SchemaBuilder - - - - - - org.eclipse.pde.PluginNature - org.eclipse.jdt.core.javanature - - diff --git a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/.settings/org.eclipse.core.runtime.prefs b/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/.settings/org.eclipse.core.runtime.prefs deleted file mode 100644 index 5a0ad22d2..000000000 --- a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/.settings/org.eclipse.core.runtime.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -line.separator=\n diff --git a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/.settings/org.eclipse.jdt.core.prefs b/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/.settings/org.eclipse.jdt.core.prefs deleted file mode 100644 index a698e5967..000000000 --- a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/.settings/org.eclipse.jdt.core.prefs +++ /dev/null @@ -1,12 +0,0 @@ -eclipse.preferences.version=1 -org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled -org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 -org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve -org.eclipse.jdt.core.compiler.compliance=1.8 -org.eclipse.jdt.core.compiler.debug.lineNumber=generate -org.eclipse.jdt.core.compiler.debug.localVariable=generate -org.eclipse.jdt.core.compiler.debug.sourceFile=generate -org.eclipse.jdt.core.compiler.problem.assertIdentifier=error -org.eclipse.jdt.core.compiler.problem.enumIdentifier=error -org.eclipse.jdt.core.compiler.source=1.8 diff --git a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/BUILD_INFO.txt b/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/BUILD_INFO.txt deleted file mode 100644 index a312cc736..000000000 --- a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/BUILD_INFO.txt +++ /dev/null @@ -1,10 +0,0 @@ -Native Build Info: ------------------- - -platform: linux.gtk.x86_64 -built by: Eric Williams, ericwill@redhat.com -build date: 24-May-2018 -OS Name: RHEL Workstation 7.5 -OS Version: Linux 3.10.0 -Compiler version: gcc (GCC) 4.8.5 -Java version: Java(TM) 8 Runtime Environment, Standard Edition (1.8.0.171) \ No newline at end of file diff --git a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/META-INF/MANIFEST.MF b/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/META-INF/MANIFEST.MF deleted file mode 100644 index 0889a8ea9..000000000 --- a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/META-INF/MANIFEST.MF +++ /dev/null @@ -1,11 +0,0 @@ -Manifest-Version: 1.0 -Bundle-ManifestVersion: 2 -Bundle-Name: %fragmentName -Bundle-Vendor: %providerName -Bundle-Localization: fragment -Bundle-SymbolicName: org.eclipse.core.net.linux.x86_64;singleton:=true -Bundle-Version: 1.2.200.qualifier -Fragment-Host: org.eclipse.core.net;bundle-version="1.1.0" -Eclipse-PlatformFilter: (& (osgi.os=linux) (osgi.arch=x86_64)) -Bundle-RequiredExecutionEnvironment: JavaSE-1.8 -Automatic-Module-Name: org.eclipse.core.net.linux.x86_64 diff --git a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/about.html b/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/about.html deleted file mode 100644 index 164f781a8..000000000 --- a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/about.html +++ /dev/null @@ -1,36 +0,0 @@ - - - - -About - - -

About This Content

- -

November 30, 2017

-

License

- -

- The Eclipse Foundation makes available all content in this plug-in - ("Content"). Unless otherwise indicated below, the Content - is provided to you under the terms and conditions of the Eclipse - Public License Version 2.0 ("EPL"). A copy of the EPL is - available at http://www.eclipse.org/legal/epl-2.0. - For purposes of the EPL, "Program" will mean the Content. -

- -

- If you did not receive this Content directly from the Eclipse - Foundation, the Content is being redistributed by another party - ("Redistributor") and different terms and conditions may - apply to your use of any object code in the Content. Check the - Redistributor's license that was provided with the Content. If no such - license exists, contact the Redistributor. Unless otherwise indicated - below, the terms and conditions of the EPL still apply to any source - code in the Content and such source code may be obtained at http://www.eclipse.org. -

- - - \ No newline at end of file diff --git a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/build.properties b/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/build.properties deleted file mode 100644 index 03ab15c87..000000000 --- a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/build.properties +++ /dev/null @@ -1,22 +0,0 @@ -############################################################################### -# Copyright (c) 2008, 2009 IBM Corporation and others. -# -# This program and the accompanying materials -# are made available under the terms of the Eclipse Public License 2.0 -# which accompanies this distribution, and is available at -# https://www.eclipse.org/legal/epl-2.0/ -# -# SPDX-License-Identifier: EPL-2.0 -# -# Contributors: -# IBM Corporation - initial API and implementation -############################################################################### -bin.includes = fragment.properties,\ - .,\ - META-INF/,\ - about.html,\ - bin/,\ - libgnomeproxy-1.0.0.so -src.includes = about.html -generateSourceBundle=false -source.. = src/ diff --git a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/fragment.properties b/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/fragment.properties deleted file mode 100644 index 225a330c1..000000000 --- a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/fragment.properties +++ /dev/null @@ -1,15 +0,0 @@ -############################################################################### -# Copyright (c) 2008, 2009 IBM Corporation and others. -# -# This program and the accompanying materials -# are made available under the terms of the Eclipse Public License 2.0 -# which accompanies this distribution, and is available at -# https://www.eclipse.org/legal/epl-2.0/ -# -# SPDX-License-Identifier: EPL-2.0 -# -# Contributors: -# IBM Corporation - initial API and implementation -############################################################################### -fragmentName = Proxy for Linux x86_64 -providerName = Eclipse.org diff --git a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/libgnomeproxy-1.0.0.so b/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/libgnomeproxy-1.0.0.so deleted file mode 100644 index ab71687a2..000000000 Binary files a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/libgnomeproxy-1.0.0.so and /dev/null differ diff --git a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/pom.xml b/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/pom.xml deleted file mode 100644 index ef239547c..000000000 --- a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/pom.xml +++ /dev/null @@ -1,81 +0,0 @@ - - - - 4.0.0 - - eclipse.platform.team - eclipse.platform.team - 4.10.0-SNAPSHOT - ../../../../ - - org.eclipse.core - org.eclipse.core.net.linux.x86_64 - 1.2.200-SNAPSHOT - eclipse-plugin - - - - - org.eclipse.tycho - target-platform-configuration - - - - linux - gtk - x86_64 - - - - - - - - - - build-natives - - - - native - gtk.linux.x86_64 - - - - - - maven-antrun-plugin - - - natives - process-resources - - - - - - - - - - - - run - - - - - - - - - diff --git a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/src/org/eclipse/core/net/ProxyProvider.java b/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/src/org/eclipse/core/net/ProxyProvider.java deleted file mode 100644 index f2f9a4bcc..000000000 --- a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/src/org/eclipse/core/net/ProxyProvider.java +++ /dev/null @@ -1,19 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2008, 2009 Oakland Software Incorporated and others - * - * This program and the accompanying materials - * are made available under the terms of the Eclipse Public License 2.0 - * which accompanies this distribution, and is available at - * https://www.eclipse.org/legal/epl-2.0/ - * - * SPDX-License-Identifier: EPL-2.0 - * - * Contributors: - * Oakland Software Incorporated - initial API and implementation - *******************************************************************************/ -package org.eclipse.core.net; - -import org.eclipse.core.internal.net.proxy.unix.UnixProxyProvider; - -public class ProxyProvider extends UnixProxyProvider { -} diff --git a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/.classpath b/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/.classpath deleted file mode 100644 index eca7bdba8..000000000 --- a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/.classpath +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/.project b/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/.project deleted file mode 100644 index 4f4816faf..000000000 --- a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/.project +++ /dev/null @@ -1,29 +0,0 @@ - - - org.eclipse.core.net.win32.x86_64 - - - - - - org.eclipse.jdt.core.javabuilder - - - - - org.eclipse.pde.ManifestBuilder - - - - - org.eclipse.pde.SchemaBuilder - - - - - - org.eclipse.pde.PluginNature - org.eclipse.jdt.core.javanature - - - diff --git a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/.settings/org.eclipse.core.runtime.prefs b/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/.settings/org.eclipse.core.runtime.prefs deleted file mode 100644 index 5a0ad22d2..000000000 --- a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/.settings/org.eclipse.core.runtime.prefs +++ /dev/null @@ -1,2 +0,0 @@ -eclipse.preferences.version=1 -line.separator=\n diff --git a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/.settings/org.eclipse.jdt.core.prefs b/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/.settings/org.eclipse.jdt.core.prefs deleted file mode 100644 index a698e5967..000000000 --- a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/.settings/org.eclipse.jdt.core.prefs +++ /dev/null @@ -1,12 +0,0 @@ -eclipse.preferences.version=1 -org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled -org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 -org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve -org.eclipse.jdt.core.compiler.compliance=1.8 -org.eclipse.jdt.core.compiler.debug.lineNumber=generate -org.eclipse.jdt.core.compiler.debug.localVariable=generate -org.eclipse.jdt.core.compiler.debug.sourceFile=generate -org.eclipse.jdt.core.compiler.problem.assertIdentifier=error -org.eclipse.jdt.core.compiler.problem.enumIdentifier=error -org.eclipse.jdt.core.compiler.source=1.8 diff --git a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/BUILD_INFO.txt b/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/BUILD_INFO.txt deleted file mode 100644 index 41aa77dc1..000000000 --- a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/BUILD_INFO.txt +++ /dev/null @@ -1,10 +0,0 @@ -Native Build Info: ------------------- - -platform: win32.x86_64 -built by: Pawel.Pogorzelski@pl.ibm.com -build date: 05-Mar-2009 -OS Name: Microsoft Windows XP Professional SP 2 -OS Version: 5.1.2600 Service Pack 2 Build 2600 -Compiler version: Microsoft Visual Studio 2008 Professional 9.0.21022.8 RTM -Java version: Standard Edition (build 1.4.2-b28) diff --git a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/META-INF/MANIFEST.MF b/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/META-INF/MANIFEST.MF deleted file mode 100644 index 379fa015b..000000000 --- a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/META-INF/MANIFEST.MF +++ /dev/null @@ -1,11 +0,0 @@ -Manifest-Version: 1.0 -Bundle-ManifestVersion: 2 -Bundle-Name: %fragmentName -Bundle-Vendor: %providerName -Bundle-Localization: fragment -Bundle-SymbolicName: org.eclipse.core.net.win32.x86_64;singleton:=true -Bundle-Version: 1.1.200.qualifier -Fragment-Host: org.eclipse.core.net;bundle-version="1.1.0" -Eclipse-PlatformFilter: (& (osgi.os=win32) (osgi.arch=x86_64)) -Bundle-RequiredExecutionEnvironment: JavaSE-1.8 -Automatic-Module-Name: org.eclipse.core.net.win32.x86_64 diff --git a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/about.html b/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/about.html deleted file mode 100644 index 164f781a8..000000000 --- a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/about.html +++ /dev/null @@ -1,36 +0,0 @@ - - - - -About - - -

About This Content

- -

November 30, 2017

-

License

- -

- The Eclipse Foundation makes available all content in this plug-in - ("Content"). Unless otherwise indicated below, the Content - is provided to you under the terms and conditions of the Eclipse - Public License Version 2.0 ("EPL"). A copy of the EPL is - available at http://www.eclipse.org/legal/epl-2.0. - For purposes of the EPL, "Program" will mean the Content. -

- -

- If you did not receive this Content directly from the Eclipse - Foundation, the Content is being redistributed by another party - ("Redistributor") and different terms and conditions may - apply to your use of any object code in the Content. Check the - Redistributor's license that was provided with the Content. If no such - license exists, contact the Redistributor. Unless otherwise indicated - below, the terms and conditions of the EPL still apply to any source - code in the Content and such source code may be obtained at http://www.eclipse.org. -

- - - \ No newline at end of file diff --git a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/build.properties b/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/build.properties deleted file mode 100644 index 55c2b946b..000000000 --- a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/build.properties +++ /dev/null @@ -1,22 +0,0 @@ -############################################################################### -# Copyright (c) 2009 IBM Corporation and others. -# -# This program and the accompanying materials -# are made available under the terms of the Eclipse Public License 2.0 -# which accompanies this distribution, and is available at -# https://www.eclipse.org/legal/epl-2.0/ -# -# SPDX-License-Identifier: EPL-2.0 -# -# Contributors: -# IBM Corporation - initial API and implementation -############################################################################### -bin.includes = fragment.properties,\ - .,\ - about.html,\ - META-INF/,\ - bin/,\ - jWinHttp-1.0.0.dll -generateSourceBundle=false -src.includes = about.html -source.. = src/ diff --git a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/fragment.properties b/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/fragment.properties deleted file mode 100644 index ff4e4defc..000000000 --- a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/fragment.properties +++ /dev/null @@ -1,15 +0,0 @@ -############################################################################### -# Copyright (c) 2009 IBM Corporation and others. -# -# This program and the accompanying materials -# are made available under the terms of the Eclipse Public License 2.0 -# which accompanies this distribution, and is available at -# https://www.eclipse.org/legal/epl-2.0/ -# -# SPDX-License-Identifier: EPL-2.0 -# -# Contributors: -# IBM Corporation - initial API and implementation -############################################################################### -fragmentName = Proxy for Windows -providerName = Eclipse.org diff --git a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/jWinHttp-1.0.0.dll b/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/jWinHttp-1.0.0.dll deleted file mode 100644 index 00771efc1..000000000 Binary files a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/jWinHttp-1.0.0.dll and /dev/null differ diff --git a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/pom.xml b/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/pom.xml deleted file mode 100644 index ba451fc15..000000000 --- a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/pom.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - 4.0.0 - - eclipse.platform.team - eclipse.platform.team - 4.10.0-SNAPSHOT - ../../../../ - - org.eclipse.core - org.eclipse.core.net.win32.x86_64 - 1.1.200-SNAPSHOT - eclipse-plugin - - - - - org.eclipse.tycho - target-platform-configuration - - - - win32 - win32 - x86_64 - - - - - - - diff --git a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/src/org/eclipse/core/net/ProxyProvider.java b/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/src/org/eclipse/core/net/ProxyProvider.java deleted file mode 100644 index e32aae27d..000000000 --- a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64/src/org/eclipse/core/net/ProxyProvider.java +++ /dev/null @@ -1,19 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2009 IBM Corporation and others. - * - * This program and the accompanying materials - * are made available under the terms of the Eclipse Public License 2.0 - * which accompanies this distribution, and is available at - * https://www.eclipse.org/legal/epl-2.0/ - * - * SPDX-License-Identifier: EPL-2.0 - * - * Contributors: - * IBM Corporation - initial API and implementation - *******************************************************************************/ -package org.eclipse.core.net; - -import org.eclipse.core.internal.net.WindowsProxyProvider; - -public class ProxyProvider extends WindowsProxyProvider { -} diff --git a/pom.xml b/pom.xml index 58989dc24..66fcedc42 100644 --- a/pom.xml +++ b/pom.xml @@ -73,9 +73,9 @@ features/org.eclipse.cvs-feature - - bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64 - bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.win32.x86_64 + + bundles/org.eclipse.core.net.linux.x86_64 + bundles/org.eclipse.core.net.win32.x86_64 tests -- cgit v1.2.3