Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
dsVersion=V1_4
eclipse.preferences.version=1
enabled=true
generateBundleActivationPolicyLazy=true
path=OSGI-INF
validationErrorLevel=error
validationErrorLevel.missingImplicitUnbindMethod=error
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Require-Bundle: org.eclipse.ecf;bundle-version="3.1.0",
org.eclipse.equinox.p2.repository;bundle-version="2.1.0",
org.eclipse.equinox.common;bundle-version="3.6.0",
org.eclipse.core.jobs;bundle-version="3.5.100"
Service-Component: OSGI-INF/ecfTransport.xml
Service-Component: OSGI-INF/org.eclipse.equinox.p2.transport.ecf.xml
Bundle-Activator: org.eclipse.equinox.internal.p2.transport.ecf.Activator
Bundle-ActivationPolicy: lazy
Export-Package: org.eclipse.equinox.internal.p2.transport.ecf;x-friends:="org.eclipse.equinox.p2.discovery.compatibility,org.eclipse.equinox.p2.installer"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/*.xml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,14 @@
*******************************************************************************/
package org.eclipse.equinox.internal.p2.transport.ecf;

import org.eclipse.equinox.internal.p2.repository.Transport;
import org.eclipse.equinox.p2.core.IProvisioningAgent;
import org.eclipse.equinox.p2.core.spi.AgentServiceName;
import org.eclipse.equinox.p2.core.spi.IAgentServiceFactory;
import org.osgi.service.component.annotations.Component;

@Component(name = "org.eclipse.equinox.p2.transport.ecf")
@AgentServiceName(Transport.class)
public class ECFTransportComponent implements IAgentServiceFactory {

@Override
Expand Down
Loading