I'm in a migration of a eclipse plugin from Kepler version to Luna. I have have this error :
Discouraged access: The type 'ProxyManager' is not API (restriction on required library '/srv/data204139/dchesnea/LUNA/eclipse/plugins/org.eclipse.core.net_1.2.200.v20140124-2013.jar')
Have you an idea ?
org.eclipse.core.internal.net.ProxyManager
is in an internal package and is therefore not part of the official Eclipse API - you should not be using it (Eclipse API Rules of Engagement).
Some of the functions of the proxy manager are available through the org.eclipse.core.net.proxy.IProxyService
OSGi service which is part of the official API.