From 91160bc275265e85f48de3a30a951f7ebb18b052 Mon Sep 17 00:00:00 2001 From: Pascal Rapicault (Ericsson) Date: Thu, 28 Feb 2013 16:34:32 -0500 Subject: Introduce helper class in to get the provisioning agent from a location --- .../touchpoint/eclipse/AgentFromInstallTests.java | 66 ++ .../normalEclipse/configuration/config.ini | 16 + ...rg.eclipse.equinox.p2.artifact.repository.prefs | 37 + ...rg.eclipse.equinox.p2.metadata.repository.prefs | 18 + ...rg.eclipse.equinox.p2.artifact.repository.prefs | 54 ++ ...rg.eclipse.equinox.p2.metadata.repository.prefs | 32 + .../.settings/org.eclipse.equinox.p2.ui.sdk.prefs | 2 + .../org.eclipse.equinox.p2.ui.sdk.scheduler.prefs | 3 + .../profileRegistry/SDKProfile.profile/.lock | 0 .../SDKProfile.profile/1362071497499.profile.gz | Bin 0 -> 118936 bytes .../configuration/config.ini | 3 + ...rg.eclipse.equinox.p2.artifact.repository.prefs | 851 +++++++++++++++++++++ ...rg.eclipse.equinox.p2.metadata.repository.prefs | 635 +++++++++++++++ .../profileRegistry/SDKProfile.profile/.lock | 0 .../SDKProfile.profile/1362004752003.profile.gz | Bin 0 -> 231460 bytes .../profileRegistry/OtherProfile.profile/.lock | 0 .../profileRegistry/SDKProfile.profile/.lock | 0 .../profileRegistry/SDKProfile.profile/empty.txt | 0 .../META-INF/MANIFEST.MF | 6 +- .../p2/touchpoint/eclipse/AgentFromInstall.java | 139 ++++ .../META-INF/MANIFEST.MF | 1 + .../ui/sdk/scheduler/AutomaticUpdateScheduler.java | 38 +- .../p2/ui/sdk/scheduler/ConfigAreaToAgent.java | 70 -- .../sdk/scheduler/PreviousConfigurationFinder.java | 18 +- 24 files changed, 1893 insertions(+), 96 deletions(-) create mode 100644 bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/touchpoint/eclipse/AgentFromInstallTests.java create mode 100644 bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/configuration/config.ini create mode 100644 bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.artifact.repository.prefs create mode 100644 bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.metadata.repository.prefs create mode 100644 bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.data/.settings/org.eclipse.equinox.p2.artifact.repository.prefs create mode 100644 bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.data/.settings/org.eclipse.equinox.p2.metadata.repository.prefs create mode 100644 bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.data/.settings/org.eclipse.equinox.p2.ui.sdk.prefs create mode 100644 bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.data/.settings/org.eclipse.equinox.p2.ui.sdk.scheduler.prefs create mode 100644 bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.lock create mode 100644 bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/1362071497499.profile.gz create mode 100644 bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/sharedWithoutBaseAvailable/configuration/config.ini create mode 100644 bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/sharedWithoutBaseAvailable/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.data/.settings/org.eclipse.equinox.p2.artifact.repository.prefs create mode 100644 bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/sharedWithoutBaseAvailable/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.data/.settings/org.eclipse.equinox.p2.metadata.repository.prefs create mode 100644 bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/sharedWithoutBaseAvailable/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.lock create mode 100644 bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/sharedWithoutBaseAvailable/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/1362004752003.profile.gz create mode 100644 bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/tooManyProfiles/p2/org.eclipse.equinox.p2.engine/profileRegistry/OtherProfile.profile/.lock create mode 100644 bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/tooManyProfiles/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.lock create mode 100644 bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/tooManyProfiles/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/empty.txt create mode 100644 bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/AgentFromInstall.java delete mode 100644 bundles/org.eclipse.equinox.p2.ui.sdk.scheduler/src/org/eclipse/equinox/internal/p2/ui/sdk/scheduler/ConfigAreaToAgent.java diff --git a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/touchpoint/eclipse/AgentFromInstallTests.java b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/touchpoint/eclipse/AgentFromInstallTests.java new file mode 100644 index 000000000..f81dd55fe --- /dev/null +++ b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/touchpoint/eclipse/AgentFromInstallTests.java @@ -0,0 +1,66 @@ +/******************************************************************************* + * Copyright (c) 2013 Ericsson AB and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Ericsson AB - initial API and implementation + *******************************************************************************/ +package org.eclipse.equinox.p2.tests.touchpoint.eclipse; + +import org.eclipse.equinox.internal.p2.touchpoint.eclipse.AgentFromInstall; + +import java.io.File; +import org.eclipse.equinox.p2.core.IProvisioningAgent; +import org.eclipse.equinox.p2.engine.IProfile; +import org.eclipse.equinox.p2.engine.IProfileRegistry; +import org.eclipse.equinox.p2.tests.AbstractProvisioningTest; + +public class AgentFromInstallTests extends AbstractProvisioningTest { + + public void testNormalEclipseFromInstallFolder() { + File installFolder = getTestData("normalEclipse", "testData/configAreaToAgent/normalEclipse"); + IProvisioningAgent agent = AgentFromInstall.createAgentFrom(getAgentProvider(), installFolder, null, null); + assertNotNull(agent); + IProfile profile = ((IProfileRegistry) agent.getService(IProfileRegistry.SERVICE_NAME)).getProfile(IProfileRegistry.SELF); + assertNotNull(profile); + assertEquals("SDKProfile", profile.getProfileId()); + } + + public void testNormalEclipseFromConfiguration() { + File configurationFolder = getTestData("normalEclipse", "testData/configAreaToAgent/normalEclipse/configuration"); + IProvisioningAgent agent = AgentFromInstall.createAgentFrom(getAgentProvider(), null, configurationFolder, null); + assertNotNull(agent); + IProfile profile = ((IProfileRegistry) agent.getService(IProfileRegistry.SERVICE_NAME)).getProfile(IProfileRegistry.SELF); + assertNotNull(profile); + assertEquals("SDKProfile", profile.getProfileId()); + } + + public void testSharedInstallWithoutBase() { + File configurationFolder = getTestData("sharedWithoutBaseAvailable", "testData/configAreaToAgent/sharedWithoutBaseAvailable"); + IProvisioningAgent agent = AgentFromInstall.createAgentFrom(getAgentProvider(), null, configurationFolder, null); + assertNotNull(agent); + IProfile profile = ((IProfileRegistry) agent.getService(IProfileRegistry.SERVICE_NAME)).getProfile(IProfileRegistry.SELF); + assertNotNull(profile); + assertEquals("SDKProfile", profile.getProfileId()); + } + + public void testMissingInstallFolder() { + IProvisioningAgent agent = AgentFromInstall.createAgentFrom(getAgentProvider(), new File("someRandomFile_that_does_not_exists"), null, null); + assertNull(agent); + } + + public void testTooManyProfiles() { + File configurationFolder = getTestData("sharedWithoutBaseAvailable", "testData/configAreaToAgent/tooManyProfiles"); + IProvisioningAgent agent = AgentFromInstall.createAgentFrom(getAgentProvider(), null, configurationFolder, null); + assertNull(agent); + } + + public void testTooManyProfilesWithProfileId() { + File configurationFolder = getTestData("sharedWithoutBaseAvailable", "testData/configAreaToAgent/tooManyProfiles"); + IProvisioningAgent agent = AgentFromInstall.createAgentFrom(getAgentProvider(), null, configurationFolder, "OtherProfile"); + assertNotNull(agent); + } +} diff --git a/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/configuration/config.ini b/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/configuration/config.ini new file mode 100644 index 000000000..8c5de57b4 --- /dev/null +++ b/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/configuration/config.ini @@ -0,0 +1,16 @@ +#This configuration file was written by: org.eclipse.equinox.internal.frameworkadmin.equinox.EquinoxFwConfigFileParser +#Wed Feb 20 11:13:03 EST 2013 +org.eclipse.update.reconcile=false +eclipse.p2.profile=SDKProfile +osgi.instance.area.default=@user.home/workspace +osgi.framework=file\:plugins/org.eclipse.osgi_3.9.0.v20130211-194207.jar +equinox.use.ds=true +eclipse.buildId=I20130219-1600 +osgi.bundles=reference\:file\:org.eclipse.equinox.simpleconfigurator_1.0.400.v20130128-050843.jar@1\:start +org.eclipse.equinox.simpleconfigurator.configUrl=file\:org.eclipse.equinox.simpleconfigurator/bundles.info +eclipse.product=org.eclipse.sdk.ide +osgi.splashPath=platform\:/base/plugins/org.eclipse.platform +osgi.framework.extensions= +osgi.bundles.defaultStartLevel=4 +eclipse.p2.data.area=@config.dir/../p2/ +eclipse.application=org.eclipse.ui.ide.workbench diff --git a/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.artifact.repository.prefs b/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.artifact.repository.prefs new file mode 100644 index 000000000..241af2258 --- /dev/null +++ b/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.artifact.repository.prefs @@ -0,0 +1,37 @@ +eclipse.preferences.version=1 +repositories/file\:_shared_eclipse_eclipse4I_build_supportDir_src_I20130219-1600_p2temp_equinox.p2.build_sdk.install.win32.win32.x86_64_eclipse/description= +repositories/file\:_shared_eclipse_eclipse4I_build_supportDir_src_I20130219-1600_p2temp_equinox.p2.build_sdk.install.win32.win32.x86_64_eclipse/enabled=true +repositories/file\:_shared_eclipse_eclipse4I_build_supportDir_src_I20130219-1600_p2temp_equinox.p2.build_sdk.install.win32.win32.x86_64_eclipse/isSystem=true +repositories/file\:_shared_eclipse_eclipse4I_build_supportDir_src_I20130219-1600_p2temp_equinox.p2.build_sdk.install.win32.win32.x86_64_eclipse/name=Bundle pool +repositories/file\:_shared_eclipse_eclipse4I_build_supportDir_src_I20130219-1600_p2temp_equinox.p2.build_sdk.install.win32.win32.x86_64_eclipse/provider= +repositories/file\:_shared_eclipse_eclipse4I_build_supportDir_src_I20130219-1600_p2temp_equinox.p2.build_sdk.install.win32.win32.x86_64_eclipse/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/file\:_shared_eclipse_eclipse4I_build_supportDir_src_I20130219-1600_p2temp_equinox.p2.build_sdk.install.win32.win32.x86_64_eclipse/uri=file\:/shared/eclipse/eclipse4I/build/supportDir/src/I20130219-1600/p2temp/equinox.p2.build/sdk.install.win32.win32.x86_64/eclipse/ +repositories/file\:_shared_eclipse_eclipse4I_build_supportDir_src_I20130219-1600_p2temp_equinox.p2.build_sdk.install.win32.win32.x86_64_eclipse/version=1 +repositories/file\:_shared_eclipse_eclipse4I_build_supportDir_src_I20130219-1600_p2temp_equinox.p2.build_sdk.install.win32.win32.x86_64_eclipse_p2_org.eclipse.equinox.p2.core_cache/description= +repositories/file\:_shared_eclipse_eclipse4I_build_supportDir_src_I20130219-1600_p2temp_equinox.p2.build_sdk.install.win32.win32.x86_64_eclipse_p2_org.eclipse.equinox.p2.core_cache/enabled=true +repositories/file\:_shared_eclipse_eclipse4I_build_supportDir_src_I20130219-1600_p2temp_equinox.p2.build_sdk.install.win32.win32.x86_64_eclipse_p2_org.eclipse.equinox.p2.core_cache/isSystem=true +repositories/file\:_shared_eclipse_eclipse4I_build_supportDir_src_I20130219-1600_p2temp_equinox.p2.build_sdk.install.win32.win32.x86_64_eclipse_p2_org.eclipse.equinox.p2.core_cache/name=download cache +repositories/file\:_shared_eclipse_eclipse4I_build_supportDir_src_I20130219-1600_p2temp_equinox.p2.build_sdk.install.win32.win32.x86_64_eclipse_p2_org.eclipse.equinox.p2.core_cache/provider= +repositories/file\:_shared_eclipse_eclipse4I_build_supportDir_src_I20130219-1600_p2temp_equinox.p2.build_sdk.install.win32.win32.x86_64_eclipse_p2_org.eclipse.equinox.p2.core_cache/suffix=artifacts.xml +repositories/file\:_shared_eclipse_eclipse4I_build_supportDir_src_I20130219-1600_p2temp_equinox.p2.build_sdk.install.win32.win32.x86_64_eclipse_p2_org.eclipse.equinox.p2.core_cache/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/file\:_shared_eclipse_eclipse4I_build_supportDir_src_I20130219-1600_p2temp_equinox.p2.build_sdk.install.win32.win32.x86_64_eclipse_p2_org.eclipse.equinox.p2.core_cache/uri=file\:/shared/eclipse/eclipse4I/build/supportDir/src/I20130219-1600/p2temp/equinox.p2.build/sdk.install.win32.win32.x86_64/eclipse/p2/org.eclipse.equinox.p2.core/cache/ +repositories/file\:_shared_eclipse_eclipse4I_build_supportDir_src_I20130219-1600_p2temp_equinox.p2.build_sdk.install.win32.win32.x86_64_eclipse_p2_org.eclipse.equinox.p2.core_cache/version=1.0.0 +repositories/file\:_shared_eclipse_eclipse4I_siteDir_updates_4.3-I-builds_I20130219-1600/description= +repositories/file\:_shared_eclipse_eclipse4I_siteDir_updates_4.3-I-builds_I20130219-1600/enabled=true +repositories/file\:_shared_eclipse_eclipse4I_siteDir_updates_4.3-I-builds_I20130219-1600/isSystem=false +repositories/file\:_shared_eclipse_eclipse4I_siteDir_updates_4.3-I-builds_I20130219-1600/name="Eclipse Project Software Repository" +repositories/file\:_shared_eclipse_eclipse4I_siteDir_updates_4.3-I-builds_I20130219-1600/provider= +repositories/file\:_shared_eclipse_eclipse4I_siteDir_updates_4.3-I-builds_I20130219-1600/suffix=artifacts.xml +repositories/file\:_shared_eclipse_eclipse4I_siteDir_updates_4.3-I-builds_I20130219-1600/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/file\:_shared_eclipse_eclipse4I_siteDir_updates_4.3-I-builds_I20130219-1600/uri=file\:/shared/eclipse/eclipse4I/siteDir/updates/4.3-I-builds/I20130219-1600/ +repositories/file\:_shared_eclipse_eclipse4I_siteDir_updates_4.3-I-builds_I20130219-1600/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/count=1 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/enabled=true +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/isSystem=false +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/nickname=The Eclipse Project Updates +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/uri=http\://download.eclipse.org/eclipse/updates/4.3 +repositories/http\:__download.eclipse.org_releases_kepler/count=1 +repositories/http\:__download.eclipse.org_releases_kepler/enabled=true +repositories/http\:__download.eclipse.org_releases_kepler/isSystem=false +repositories/http\:__download.eclipse.org_releases_kepler/nickname=Kepler +repositories/http\:__download.eclipse.org_releases_kepler/uri=http\://download.eclipse.org/releases/kepler diff --git a/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.metadata.repository.prefs b/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.metadata.repository.prefs new file mode 100644 index 000000000..b938894eb --- /dev/null +++ b/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.metadata.repository.prefs @@ -0,0 +1,18 @@ +eclipse.preferences.version=1 +repositories/file\:_shared_eclipse_eclipse4I_siteDir_updates_4.3-I-builds_I20130219-1600/enabled=true +repositories/file\:_shared_eclipse_eclipse4I_siteDir_updates_4.3-I-builds_I20130219-1600/isSystem=false +repositories/file\:_shared_eclipse_eclipse4I_siteDir_updates_4.3-I-builds_I20130219-1600/name="Eclipse Project Software Repository" +repositories/file\:_shared_eclipse_eclipse4I_siteDir_updates_4.3-I-builds_I20130219-1600/suffix=content.xml +repositories/file\:_shared_eclipse_eclipse4I_siteDir_updates_4.3-I-builds_I20130219-1600/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/file\:_shared_eclipse_eclipse4I_siteDir_updates_4.3-I-builds_I20130219-1600/uri=file\:/shared/eclipse/eclipse4I/siteDir/updates/4.3-I-builds/I20130219-1600/ +repositories/file\:_shared_eclipse_eclipse4I_siteDir_updates_4.3-I-builds_I20130219-1600/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/count=1 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/enabled=true +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/isSystem=false +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/nickname=The Eclipse Project Updates +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/uri=http\://download.eclipse.org/eclipse/updates/4.3 +repositories/http\:__download.eclipse.org_releases_kepler/count=1 +repositories/http\:__download.eclipse.org_releases_kepler/enabled=true +repositories/http\:__download.eclipse.org_releases_kepler/isSystem=false +repositories/http\:__download.eclipse.org_releases_kepler/nickname=Kepler +repositories/http\:__download.eclipse.org_releases_kepler/uri=http\://download.eclipse.org/releases/kepler diff --git a/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.data/.settings/org.eclipse.equinox.p2.artifact.repository.prefs b/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.data/.settings/org.eclipse.equinox.p2.artifact.repository.prefs new file mode 100644 index 000000000..3df9c513a --- /dev/null +++ b/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.data/.settings/org.eclipse.equinox.p2.artifact.repository.prefs @@ -0,0 +1,54 @@ +eclipse.preferences.version=1 +repositories/file\:_C\:_dev_eclipse/description= +repositories/file\:_C\:_dev_eclipse/enabled=true +repositories/file\:_C\:_dev_eclipse/isSystem=true +repositories/file\:_C\:_dev_eclipse/name=Bundle pool +repositories/file\:_C\:_dev_eclipse/provider= +repositories/file\:_C\:_dev_eclipse/suffix=artifacts.xml +repositories/file\:_C\:_dev_eclipse/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/file\:_C\:_dev_eclipse/uri=file\:/C\:/dev/eclipse/ +repositories/file\:_C\:_dev_eclipse/version=1.0.0 +repositories/file\:_C\:_dev_eclipse_.eclipseextension/description= +repositories/file\:_C\:_dev_eclipse_.eclipseextension/enabled=true +repositories/file\:_C\:_dev_eclipse_.eclipseextension/isSystem=true +repositories/file\:_C\:_dev_eclipse_.eclipseextension/name=C\:\\dev\\eclipse\\.eclipseextension +repositories/file\:_C\:_dev_eclipse_.eclipseextension/provider= +repositories/file\:_C\:_dev_eclipse_.eclipseextension/suffix=eclipse +repositories/file\:_C\:_dev_eclipse_.eclipseextension/type=org.eclipse.equinox.p2.extensionlocation.artifactRepository +repositories/file\:_C\:_dev_eclipse_.eclipseextension/uri=file\:/C\:/dev/eclipse/.eclipseextension +repositories/file\:_C\:_dev_eclipse_.eclipseextension/version=1 +repositories/file\:_C\:_dev_eclipse_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/description= +repositories/file\:_C\:_dev_eclipse_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/enabled=true +repositories/file\:_C\:_dev_eclipse_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/isSystem=true +repositories/file\:_C\:_dev_eclipse_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/name=dropins +repositories/file\:_C\:_dev_eclipse_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/provider= +repositories/file\:_C\:_dev_eclipse_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/suffix=artifacts.xml +repositories/file\:_C\:_dev_eclipse_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/file\:_C\:_dev_eclipse_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/uri=file\:/C\:/dev/eclipse/configuration/org.eclipse.osgi/bundles/115/data/listener_1925729951/ +repositories/file\:_C\:_dev_eclipse_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/version=1.0.0 +repositories/file\:_C\:_dev_eclipse_p2_org.eclipse.equinox.p2.core_cache/description= +repositories/file\:_C\:_dev_eclipse_p2_org.eclipse.equinox.p2.core_cache/enabled=true +repositories/file\:_C\:_dev_eclipse_p2_org.eclipse.equinox.p2.core_cache/isSystem=true +repositories/file\:_C\:_dev_eclipse_p2_org.eclipse.equinox.p2.core_cache/name=download cache +repositories/file\:_C\:_dev_eclipse_p2_org.eclipse.equinox.p2.core_cache/provider= +repositories/file\:_C\:_dev_eclipse_p2_org.eclipse.equinox.p2.core_cache/suffix=artifacts.xml +repositories/file\:_C\:_dev_eclipse_p2_org.eclipse.equinox.p2.core_cache/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/file\:_C\:_dev_eclipse_p2_org.eclipse.equinox.p2.core_cache/uri=file\:/C\:/dev/eclipse/p2/org.eclipse.equinox.p2.core/cache/ +repositories/file\:_C\:_dev_eclipse_p2_org.eclipse.equinox.p2.core_cache/version=1.0.0 +repositories/file\:_c\:_dev_p2atEclipse_USF/description= +repositories/file\:_c\:_dev_p2atEclipse_USF/enabled=true +repositories/file\:_c\:_dev_p2atEclipse_USF/isSystem=false +repositories/file\:_c\:_dev_p2atEclipse_USF/name=Update Site +repositories/file\:_c\:_dev_p2atEclipse_USF/provider= +repositories/file\:_c\:_dev_p2atEclipse_USF/suffix=artifacts.xml +repositories/file\:_c\:_dev_p2atEclipse_USF/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/file\:_c\:_dev_p2atEclipse_USF/uri=file\:/c\:/dev/p2atEclipse/USF/ +repositories/file\:_c\:_dev_p2atEclipse_USF/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/count=1 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/enabled=true +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/nickname=The Eclipse Project Updates +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/uri=http\://download.eclipse.org/eclipse/updates/4.3 +repositories/http\:__download.eclipse.org_releases_kepler/count=1 +repositories/http\:__download.eclipse.org_releases_kepler/enabled=true +repositories/http\:__download.eclipse.org_releases_kepler/nickname=Kepler +repositories/http\:__download.eclipse.org_releases_kepler/uri=http\://download.eclipse.org/releases/kepler diff --git a/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.data/.settings/org.eclipse.equinox.p2.metadata.repository.prefs b/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.data/.settings/org.eclipse.equinox.p2.metadata.repository.prefs new file mode 100644 index 000000000..79ca67456 --- /dev/null +++ b/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.data/.settings/org.eclipse.equinox.p2.metadata.repository.prefs @@ -0,0 +1,32 @@ +eclipse.preferences.version=1 +repositories/file\:_C\:_dev_eclipse_.eclipseextension/description= +repositories/file\:_C\:_dev_eclipse_.eclipseextension/enabled=true +repositories/file\:_C\:_dev_eclipse_.eclipseextension/isSystem=true +repositories/file\:_C\:_dev_eclipse_.eclipseextension/name=C\:\\dev\\eclipse\\.eclipseextension +repositories/file\:_C\:_dev_eclipse_.eclipseextension/provider= +repositories/file\:_C\:_dev_eclipse_.eclipseextension/suffix=eclipse +repositories/file\:_C\:_dev_eclipse_.eclipseextension/type=org.eclipse.equinox.p2.extensionlocation.metadataRepository +repositories/file\:_C\:_dev_eclipse_.eclipseextension/uri=file\:/C\:/dev/eclipse/.eclipseextension +repositories/file\:_C\:_dev_eclipse_.eclipseextension/version=1 +repositories/file\:_C\:_dev_eclipse_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/isSystem=true +repositories/file\:_C\:_dev_eclipse_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/name=dropins +repositories/file\:_C\:_dev_eclipse_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/suffix=content.xml +repositories/file\:_C\:_dev_eclipse_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/file\:_C\:_dev_eclipse_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/uri=file\:/C\:/dev/eclipse/configuration/org.eclipse.osgi/bundles/115/data/listener_1925729951/ +repositories/file\:_C\:_dev_eclipse_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/version=1.0.0 +repositories/file\:_c\:_dev_p2atEclipse_USF/enabled=true +repositories/file\:_c\:_dev_p2atEclipse_USF/isSystem=false +repositories/file\:_c\:_dev_p2atEclipse_USF/name=Update Site +repositories/file\:_c\:_dev_p2atEclipse_USF/nickname=Update Site +repositories/file\:_c\:_dev_p2atEclipse_USF/suffix=content.xml +repositories/file\:_c\:_dev_p2atEclipse_USF/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/file\:_c\:_dev_p2atEclipse_USF/uri=file\:/c\:/dev/p2atEclipse/USF/ +repositories/file\:_c\:_dev_p2atEclipse_USF/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/count=1 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/enabled=true +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/nickname=The Eclipse Project Updates +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/uri=http\://download.eclipse.org/eclipse/updates/4.3 +repositories/http\:__download.eclipse.org_releases_kepler/count=1 +repositories/http\:__download.eclipse.org_releases_kepler/enabled=true +repositories/http\:__download.eclipse.org_releases_kepler/nickname=Kepler +repositories/http\:__download.eclipse.org_releases_kepler/uri=http\://download.eclipse.org/releases/kepler diff --git a/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.data/.settings/org.eclipse.equinox.p2.ui.sdk.prefs b/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.data/.settings/org.eclipse.equinox.p2.ui.sdk.prefs new file mode 100644 index 000000000..2c0653dda --- /dev/null +++ b/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.data/.settings/org.eclipse.equinox.p2.ui.sdk.prefs @@ -0,0 +1,2 @@ +allowNonOKPlan=prompt +eclipse.preferences.version=1 diff --git a/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.data/.settings/org.eclipse.equinox.p2.ui.sdk.scheduler.prefs b/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.data/.settings/org.eclipse.equinox.p2.ui.sdk.scheduler.prefs new file mode 100644 index 000000000..51b777004 --- /dev/null +++ b/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.data/.settings/org.eclipse.equinox.p2.ui.sdk.scheduler.prefs @@ -0,0 +1,3 @@ +autoUpdateInit=true +eclipse.preferences.version=1 +migrated34Prefs=true diff --git a/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.lock b/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.lock new file mode 100644 index 000000000..e69de29bb diff --git a/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/1362071497499.profile.gz b/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/1362071497499.profile.gz new file mode 100644 index 000000000..886b9f9ad Binary files /dev/null and b/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/normalEclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/1362071497499.profile.gz differ diff --git a/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/sharedWithoutBaseAvailable/configuration/config.ini b/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/sharedWithoutBaseAvailable/configuration/config.ini new file mode 100644 index 000000000..7e23b7e37 --- /dev/null +++ b/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/sharedWithoutBaseAvailable/configuration/config.ini @@ -0,0 +1,3 @@ +#This configuration file was written by: org.eclipse.equinox.internal.frameworkadmin.equinox.EquinoxFwConfigFileParser +#Wed Feb 27 17:39:15 EST 2013 +osgi.sharedConfiguration.area=file\:configuration/ diff --git a/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/sharedWithoutBaseAvailable/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.data/.settings/org.eclipse.equinox.p2.artifact.repository.prefs b/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/sharedWithoutBaseAvailable/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.data/.settings/org.eclipse.equinox.p2.artifact.repository.prefs new file mode 100644 index 000000000..082688180 --- /dev/null +++ b/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/sharedWithoutBaseAvailable/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.data/.settings/org.eclipse.equinox.p2.artifact.repository.prefs @@ -0,0 +1,851 @@ +eclipse.preferences.version=1 +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64/description= +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64/enabled=true +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64/isSystem=true +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64/name=Bundle pool +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64/provider= +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64/suffix=artifacts.xml +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64/uri=file\:/C\:/Users/epasrap/.eclipse/org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64/ +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64/version=1.0.0 +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_.eclipseextension/description= +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_.eclipseextension/enabled=true +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_.eclipseextension/isSystem=true +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_.eclipseextension/name=C\:\\Users\\epasrap\\.eclipse\\org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64\\.eclipseextension +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_.eclipseextension/provider= +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_.eclipseextension/suffix=eclipse +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_.eclipseextension/type=org.eclipse.equinox.p2.extensionlocation.artifactRepository +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_.eclipseextension/uri=file\:/C\:/Users/epasrap/.eclipse/org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64/.eclipseextension +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_.eclipseextension/version=1 +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/description= +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/enabled=true +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/isSystem=true +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/name=dropins +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/provider= +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/suffix=artifacts.xml +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/uri=file\:/C\:/Users/epasrap/.eclipse/org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64/configuration/org.eclipse.osgi/bundles/115/data/listener_1925729951/ +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/version=1.0.0 +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_p2_org.eclipse.equinox.p2.core_cache/description= +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_p2_org.eclipse.equinox.p2.core_cache/enabled=true +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_p2_org.eclipse.equinox.p2.core_cache/isSystem=true +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_p2_org.eclipse.equinox.p2.core_cache/name=download cache +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_p2_org.eclipse.equinox.p2.core_cache/provider= +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_p2_org.eclipse.equinox.p2.core_cache/suffix=artifacts.xml +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_p2_org.eclipse.equinox.p2.core_cache/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_p2_org.eclipse.equinox.p2.core_cache/uri=file\:/C\:/Users/epasrap/.eclipse/org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64/p2/org.eclipse.equinox.p2.core/cache/ +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_p2_org.eclipse.equinox.p2.core_cache/version=1.0.0 +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-SDK-M20130131-0800-win32-x86_64_eclipse/description= +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-SDK-M20130131-0800-win32-x86_64_eclipse/enabled=true +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-SDK-M20130131-0800-win32-x86_64_eclipse/isSystem=true +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-SDK-M20130131-0800-win32-x86_64_eclipse/name=Bundle pool +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-SDK-M20130131-0800-win32-x86_64_eclipse/provider= +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-SDK-M20130131-0800-win32-x86_64_eclipse/suffix=artifacts.xml +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-SDK-M20130131-0800-win32-x86_64_eclipse/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-SDK-M20130131-0800-win32-x86_64_eclipse/uri=file\:/C\:/dev/eclipse%20distros/eclipse-SDK-M20130131-0800-win32-x86_64/eclipse/ +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-SDK-M20130131-0800-win32-x86_64_eclipse/version=1.0.0 +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-SDK-M20130131-0800-win32-x86_64_eclipse_p2_org.eclipse.equinox.p2.core_cache/description= +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-SDK-M20130131-0800-win32-x86_64_eclipse_p2_org.eclipse.equinox.p2.core_cache/enabled=true +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-SDK-M20130131-0800-win32-x86_64_eclipse_p2_org.eclipse.equinox.p2.core_cache/isSystem=true +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-SDK-M20130131-0800-win32-x86_64_eclipse_p2_org.eclipse.equinox.p2.core_cache/name=download cache +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-SDK-M20130131-0800-win32-x86_64_eclipse_p2_org.eclipse.equinox.p2.core_cache/provider= +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-SDK-M20130131-0800-win32-x86_64_eclipse_p2_org.eclipse.equinox.p2.core_cache/suffix=artifacts.xml +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-SDK-M20130131-0800-win32-x86_64_eclipse_p2_org.eclipse.equinox.p2.core_cache/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-SDK-M20130131-0800-win32-x86_64_eclipse_p2_org.eclipse.equinox.p2.core_cache/uri=file\:/C\:/dev/eclipse%20distros/eclipse-SDK-M20130131-0800-win32-x86_64/eclipse/p2/org.eclipse.equinox.p2.core/cache/ +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-SDK-M20130131-0800-win32-x86_64_eclipse_p2_org.eclipse.equinox.p2.core_cache/version=1.0.0 +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse/description= +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse/enabled=true +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse/isSystem=true +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse/name=Bundle pool +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse/provider= +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse/suffix=artifacts.xml +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse/uri=file\:/C\:/dev/eclipse%20distros/eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64/eclipse/ +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse/version=1.0.0 +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_.eclipseextension/description= +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_.eclipseextension/enabled=true +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_.eclipseextension/isSystem=false +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_.eclipseextension/name=C\:\\dev\\eclipse distros\\eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64\\eclipse\\.eclipseextension +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_.eclipseextension/provider= +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_.eclipseextension/suffix=eclipse +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_.eclipseextension/type=org.eclipse.equinox.p2.extensionlocation.artifactRepository +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_.eclipseextension/uri=file\:/C\:/dev/eclipse%20distros/eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64/eclipse/.eclipseextension +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_.eclipseextension/version=1 +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_configuration_org.eclipse.osgi_bundles_95_data_listener_1925729951/description= +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_configuration_org.eclipse.osgi_bundles_95_data_listener_1925729951/enabled=true +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_configuration_org.eclipse.osgi_bundles_95_data_listener_1925729951/isSystem=true +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_configuration_org.eclipse.osgi_bundles_95_data_listener_1925729951/name=dropins +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_configuration_org.eclipse.osgi_bundles_95_data_listener_1925729951/provider= +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_configuration_org.eclipse.osgi_bundles_95_data_listener_1925729951/suffix=artifacts.xml +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_configuration_org.eclipse.osgi_bundles_95_data_listener_1925729951/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_configuration_org.eclipse.osgi_bundles_95_data_listener_1925729951/uri=file\:/C\:/dev/eclipse%20distros/eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64/eclipse/configuration/org.eclipse.osgi/bundles/95/data/listener_1925729951/ +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_configuration_org.eclipse.osgi_bundles_95_data_listener_1925729951/version=1.0.0 +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_p2_org.eclipse.equinox.p2.core_cache/description= +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_p2_org.eclipse.equinox.p2.core_cache/enabled=true +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_p2_org.eclipse.equinox.p2.core_cache/isSystem=true +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_p2_org.eclipse.equinox.p2.core_cache/name=download cache +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_p2_org.eclipse.equinox.p2.core_cache/provider= +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_p2_org.eclipse.equinox.p2.core_cache/suffix=artifacts.xml +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_p2_org.eclipse.equinox.p2.core_cache/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_p2_org.eclipse.equinox.p2.core_cache/uri=file\:/C\:/dev/eclipse%20distros/eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64/eclipse/p2/org.eclipse.equinox.p2.core/cache/ +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_p2_org.eclipse.equinox.p2.core_cache/version=1.0.0 +repositories/file\:_C\:_dev_eclipse/description= +repositories/file\:_C\:_dev_eclipse/enabled=true +repositories/file\:_C\:_dev_eclipse/isSystem=true +repositories/file\:_C\:_dev_eclipse/name=Bundle pool +repositories/file\:_C\:_dev_eclipse/provider= +repositories/file\:_C\:_dev_eclipse/suffix=artifacts.xml +repositories/file\:_C\:_dev_eclipse/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/file\:_C\:_dev_eclipse/uri=file\:/C\:/dev/eclipse/ +repositories/file\:_C\:_dev_eclipse/version=1.0.0 +repositories/file\:_C\:_dev_eclipse_.eclipseextension/description= +repositories/file\:_C\:_dev_eclipse_.eclipseextension/enabled=true +repositories/file\:_C\:_dev_eclipse_.eclipseextension/isSystem=true +repositories/file\:_C\:_dev_eclipse_.eclipseextension/name=C\:\\dev\\eclipse\\.eclipseextension +repositories/file\:_C\:_dev_eclipse_.eclipseextension/provider= +repositories/file\:_C\:_dev_eclipse_.eclipseextension/suffix=eclipse +repositories/file\:_C\:_dev_eclipse_.eclipseextension/type=org.eclipse.equinox.p2.extensionlocation.artifactRepository +repositories/file\:_C\:_dev_eclipse_.eclipseextension/uri=file\:/C\:/dev/eclipse/.eclipseextension +repositories/file\:_C\:_dev_eclipse_.eclipseextension/version=1 +repositories/file\:_C\:_dev_eclipse_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/description= +repositories/file\:_C\:_dev_eclipse_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/enabled=true +repositories/file\:_C\:_dev_eclipse_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/isSystem=true +repositories/file\:_C\:_dev_eclipse_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/name=dropins +repositories/file\:_C\:_dev_eclipse_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/provider= +repositories/file\:_C\:_dev_eclipse_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/suffix=artifacts.xml +repositories/file\:_C\:_dev_eclipse_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/file\:_C\:_dev_eclipse_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/uri=file\:/C\:/dev/eclipse/configuration/org.eclipse.osgi/bundles/115/data/listener_1925729951/ +repositories/file\:_C\:_dev_eclipse_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/version=1.0.0 +repositories/file\:_C\:_dev_eclipse_p2_org.eclipse.equinox.p2.core_cache/description= +repositories/file\:_C\:_dev_eclipse_p2_org.eclipse.equinox.p2.core_cache/enabled=true +repositories/file\:_C\:_dev_eclipse_p2_org.eclipse.equinox.p2.core_cache/isSystem=true +repositories/file\:_C\:_dev_eclipse_p2_org.eclipse.equinox.p2.core_cache/name=download cache +repositories/file\:_C\:_dev_eclipse_p2_org.eclipse.equinox.p2.core_cache/provider= +repositories/file\:_C\:_dev_eclipse_p2_org.eclipse.equinox.p2.core_cache/suffix=artifacts.xml +repositories/file\:_C\:_dev_eclipse_p2_org.eclipse.equinox.p2.core_cache/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/file\:_C\:_dev_eclipse_p2_org.eclipse.equinox.p2.core_cache/uri=file\:/C\:/dev/eclipse/p2/org.eclipse.equinox.p2.core/cache/ +repositories/file\:_C\:_dev_eclipse_p2_org.eclipse.equinox.p2.core_cache/version=1.0.0 +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install12/description= +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install12/enabled=true +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install12/isSystem=false +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install12/name=Exported Repository +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install12/nickname=Exported Repository +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install12/provider= +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install12/suffix=artifacts.xml +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install12/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install12/uri=file\:/C\:/dev/p2verbatim/.metadata/.plugins/org.eclipse.pde.core/install12/ +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install12/version=1.0.0 +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install5/description= +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install5/enabled=true +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install5/isSystem=false +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install5/name=Exported Repository +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install5/nickname=Exported Repository +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install5/provider= +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install5/suffix=artifacts.xml +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install5/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install5/uri=file\:/C\:/dev/p2verbatim/.metadata/.plugins/org.eclipse.pde.core/install5/ +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install5/version=1.0.0 +repositories/file\:_C\:_perso_jb_eclipse_.eclipseextension/description= +repositories/file\:_C\:_perso_jb_eclipse_.eclipseextension/enabled=true +repositories/file\:_C\:_perso_jb_eclipse_.eclipseextension/isSystem=false +repositories/file\:_C\:_perso_jb_eclipse_.eclipseextension/name=C\:\\perso\\jb\\eclipse\\.eclipseextension +repositories/file\:_C\:_perso_jb_eclipse_.eclipseextension/provider= +repositories/file\:_C\:_perso_jb_eclipse_.eclipseextension/suffix=eclipse +repositories/file\:_C\:_perso_jb_eclipse_.eclipseextension/type=org.eclipse.equinox.p2.extensionlocation.artifactRepository +repositories/file\:_C\:_perso_jb_eclipse_.eclipseextension/uri=file\:/C\:/perso/jb/eclipse/.eclipseextension +repositories/file\:_C\:_perso_jb_eclipse_.eclipseextension/version=1 +repositories/file\:_C\:_perso_jb_eclipse_configuration_org.eclipse.osgi_bundles_168_data_listener_1925729951/description= +repositories/file\:_C\:_perso_jb_eclipse_configuration_org.eclipse.osgi_bundles_168_data_listener_1925729951/enabled=true +repositories/file\:_C\:_perso_jb_eclipse_configuration_org.eclipse.osgi_bundles_168_data_listener_1925729951/isSystem=true +repositories/file\:_C\:_perso_jb_eclipse_configuration_org.eclipse.osgi_bundles_168_data_listener_1925729951/name=dropins +repositories/file\:_C\:_perso_jb_eclipse_configuration_org.eclipse.osgi_bundles_168_data_listener_1925729951/provider= +repositories/file\:_C\:_perso_jb_eclipse_configuration_org.eclipse.osgi_bundles_168_data_listener_1925729951/suffix=artifacts.xml +repositories/file\:_C\:_perso_jb_eclipse_configuration_org.eclipse.osgi_bundles_168_data_listener_1925729951/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/file\:_C\:_perso_jb_eclipse_configuration_org.eclipse.osgi_bundles_168_data_listener_1925729951/uri=file\:/C\:/perso/jb/eclipse/configuration/org.eclipse.osgi/bundles/168/data/listener_1925729951/ +repositories/file\:_C\:_perso_jb_eclipse_configuration_org.eclipse.osgi_bundles_168_data_listener_1925729951/version=1.0.0 +repositories/file\:_C\:_perso_jb_eclipse_p2_org.eclipse.equinox.p2.core_cache/description= +repositories/file\:_C\:_perso_jb_eclipse_p2_org.eclipse.equinox.p2.core_cache/enabled=true +repositories/file\:_C\:_perso_jb_eclipse_p2_org.eclipse.equinox.p2.core_cache/isSystem=true +repositories/file\:_C\:_perso_jb_eclipse_p2_org.eclipse.equinox.p2.core_cache/name=download cache +repositories/file\:_C\:_perso_jb_eclipse_p2_org.eclipse.equinox.p2.core_cache/provider= +repositories/file\:_C\:_perso_jb_eclipse_p2_org.eclipse.equinox.p2.core_cache/suffix=artifacts.xml +repositories/file\:_C\:_perso_jb_eclipse_p2_org.eclipse.equinox.p2.core_cache/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/file\:_C\:_perso_jb_eclipse_p2_org.eclipse.equinox.p2.core_cache/uri=file\:/C\:/perso/jb/eclipse/p2/org.eclipse.equinox.p2.core/cache/ +repositories/file\:_C\:_perso_jb_eclipse_p2_org.eclipse.equinox.p2.core_cache/version=1.0.0 +repositories/file\:_c\:_dev_p2atEclipse_USF/description= +repositories/file\:_c\:_dev_p2atEclipse_USF/enabled=true +repositories/file\:_c\:_dev_p2atEclipse_USF/isSystem=false +repositories/file\:_c\:_dev_p2atEclipse_USF/name=Update Site +repositories/file\:_c\:_dev_p2atEclipse_USF/provider= +repositories/file\:_c\:_dev_p2atEclipse_USF/suffix=artifacts.xml +repositories/file\:_c\:_dev_p2atEclipse_USF/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/file\:_c\:_dev_p2atEclipse_USF/uri=file\:/c\:/dev/p2atEclipse/USF/ +repositories/file\:_c\:_dev_p2atEclipse_USF/version=1.0.0 +repositories/http\:__community.polarion.com_projects_subversive_download_eclipse_3.0_kepler-site/description= +repositories/http\:__community.polarion.com_projects_subversive_download_eclipse_3.0_kepler-site/enabled=true +repositories/http\:__community.polarion.com_projects_subversive_download_eclipse_3.0_kepler-site/isSystem=false +repositories/http\:__community.polarion.com_projects_subversive_download_eclipse_3.0_kepler-site/name=Update Site +repositories/http\:__community.polarion.com_projects_subversive_download_eclipse_3.0_kepler-site/provider= +repositories/http\:__community.polarion.com_projects_subversive_download_eclipse_3.0_kepler-site/suffix=artifacts.xml +repositories/http\:__community.polarion.com_projects_subversive_download_eclipse_3.0_kepler-site/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__community.polarion.com_projects_subversive_download_eclipse_3.0_kepler-site/uri=http\://community.polarion.com/projects/subversive/download/eclipse/3.0/kepler-site/ +repositories/http\:__community.polarion.com_projects_subversive_download_eclipse_3.0_kepler-site/version=1.0.0 +repositories/http\:__community.polarion.com_projects_subversive_download_eclipse_3.0_update-site/enabled=false +repositories/http\:__community.polarion.com_projects_subversive_download_eclipse_3.0_update-site/isSystem=false +repositories/http\:__community.polarion.com_projects_subversive_download_eclipse_3.0_update-site/uri=http\://community.polarion.com/projects/subversive/download/eclipse/3.0/update-site/ +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds/description= +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds/enabled=true +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds/isSystem=false +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds/name=The Eclipse Project milestone repository +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds/provider= +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds/suffix=compositeArtifacts.xml +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds/type=org.eclipse.equinox.internal.p2.artifact.repository.CompositeArtifactRepository +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds/uri=http\://download.eclipse.org/eclipse/updates/3.8-M-builds +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121205-1000/description= +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121205-1000/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121205-1000/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121205-1000/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121205-1000/provider= +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121205-1000/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121205-1000/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121205-1000/uri=http\://download.eclipse.org/eclipse/updates/3.8-M-builds/M20121205-1000 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121205-1000/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1000/description= +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1000/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1000/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1000/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1000/provider= +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1000/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1000/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1000/uri=http\://download.eclipse.org/eclipse/updates/3.8-M-builds/M20121212-1000 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1000/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1600/description= +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1600/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1600/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1600/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1600/provider= +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1600/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1600/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1600/uri=http\://download.eclipse.org/eclipse/updates/3.8-M-builds/M20121212-1600 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1600/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121219-1000/description= +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121219-1000/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121219-1000/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121219-1000/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121219-1000/provider= +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121219-1000/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121219-1000/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121219-1000/uri=http\://download.eclipse.org/eclipse/updates/3.8-M-builds/M20121219-1000 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121219-1000/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130102-1000/description= +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130102-1000/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130102-1000/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130102-1000/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130102-1000/provider= +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130102-1000/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130102-1000/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130102-1000/uri=http\://download.eclipse.org/eclipse/updates/3.8-M-builds/M20130102-1000 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130102-1000/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130109-1000/description= +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130109-1000/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130109-1000/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130109-1000/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130109-1000/provider= +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130109-1000/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130109-1000/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130109-1000/uri=http\://download.eclipse.org/eclipse/updates/3.8-M-builds/M20130109-1000 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130109-1000/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130116-1030/description= +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130116-1030/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130116-1030/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130116-1030/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130116-1030/provider= +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130116-1030/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130116-1030/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130116-1030/uri=http\://download.eclipse.org/eclipse/updates/3.8-M-builds/M20130116-1030 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130116-1030/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130123-1500/description= +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130123-1500/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130123-1500/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130123-1500/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130123-1500/provider= +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130123-1500/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130123-1500/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130123-1500/uri=http\://download.eclipse.org/eclipse/updates/3.8-M-builds/M20130123-1500 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130123-1500/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130124-1500/description= +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130124-1500/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130124-1500/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130124-1500/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130124-1500/provider= +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130124-1500/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130124-1500/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130124-1500/uri=http\://download.eclipse.org/eclipse/updates/3.8-M-builds/M20130124-1500 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130124-1500/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130125-1000/description= +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130125-1000/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130125-1000/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130125-1000/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130125-1000/provider= +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130125-1000/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130125-1000/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130125-1000/uri=http\://download.eclipse.org/eclipse/updates/3.8-M-builds/M20130125-1000 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130125-1000/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130131-0800/description= +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130131-0800/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130131-0800/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130131-0800/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130131-0800/provider= +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130131-0800/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130131-0800/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130131-0800/uri=http\://download.eclipse.org/eclipse/updates/3.8-M-builds/M20130131-0800 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130131-0800/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_4.2/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_4.2/isSystem=false +repositories/http\:__download.eclipse.org_eclipse_updates_4.2/uri=http\://download.eclipse.org/eclipse/updates/4.2 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds/description= +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds/enabled=true +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds/isSystem=false +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds/name=The Eclipse Project integration repository +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds/nickname=The Eclipse Project Updates +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds/provider= +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds/suffix=compositeArtifacts.xml +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds/type=org.eclipse.equinox.internal.p2.artifact.repository.CompositeArtifactRepository +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds/uri=http\://download.eclipse.org/eclipse/updates/4.3-I-builds +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130130-2000/description= +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130130-2000/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130130-2000/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130130-2000/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130130-2000/provider= +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130130-2000/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130130-2000/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130130-2000/uri=http\://download.eclipse.org/eclipse/updates/4.3-I-builds/I20130130-2000 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130130-2000/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130204-1400/description= +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130204-1400/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130204-1400/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130204-1400/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130204-1400/provider= +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130204-1400/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130204-1400/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130204-1400/uri=http\://download.eclipse.org/eclipse/updates/4.3-I-builds/I20130204-1400 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130204-1400/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130205-0800/description= +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130205-0800/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130205-0800/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130205-0800/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130205-0800/provider= +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130205-0800/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130205-0800/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130205-0800/uri=http\://download.eclipse.org/eclipse/updates/4.3-I-builds/I20130205-0800 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130205-0800/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130212-0800/description= +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130212-0800/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130212-0800/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130212-0800/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130212-0800/provider= +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130212-0800/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130212-0800/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130212-0800/uri=http\://download.eclipse.org/eclipse/updates/4.3-I-builds/I20130212-0800 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130212-0800/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-0800/description= +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-0800/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-0800/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-0800/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-0800/provider= +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-0800/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-0800/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-0800/uri=http\://download.eclipse.org/eclipse/updates/4.3-I-builds/I20130219-0800 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-0800/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-1600/description= +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-1600/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-1600/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-1600/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-1600/provider= +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-1600/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-1600/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-1600/uri=http\://download.eclipse.org/eclipse/updates/4.3-I-builds/I20130219-1600 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-1600/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/description= +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/enabled=true +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/isSystem=false +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/name=Empty repository +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/nickname=The Eclipse Project Updates +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/provider= +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/suffix=compositeArtifacts.xml +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/type=org.eclipse.equinox.internal.p2.artifact.repository.CompositeArtifactRepository +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/uri=http\://download.eclipse.org/eclipse/updates/4.3 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/version=1.0.0 +repositories/http\:__download.eclipse.org_egit_updates-2.3/description= +repositories/http\:__download.eclipse.org_egit_updates-2.3/enabled=true +repositories/http\:__download.eclipse.org_egit_updates-2.3/isSystem=false +repositories/http\:__download.eclipse.org_egit_updates-2.3/name=EGit P2 Repository +repositories/http\:__download.eclipse.org_egit_updates-2.3/provider= +repositories/http\:__download.eclipse.org_egit_updates-2.3/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_egit_updates-2.3/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_egit_updates-2.3/uri=http\://download.eclipse.org/egit/updates-2.3 +repositories/http\:__download.eclipse.org_egit_updates-2.3/version=1.0.0 +repositories/http\:__download.eclipse.org_egit_updates/enabled=false +repositories/http\:__download.eclipse.org_egit_updates/isSystem=false +repositories/http\:__download.eclipse.org_egit_updates/uri=http\://download.eclipse.org/egit/updates +repositories/http\:__download.eclipse.org_modeling_emf_emf_updates_2.9milestones_base_S201212130932/description= +repositories/http\:__download.eclipse.org_modeling_emf_emf_updates_2.9milestones_base_S201212130932/enabled=true +repositories/http\:__download.eclipse.org_modeling_emf_emf_updates_2.9milestones_base_S201212130932/isSystem=false +repositories/http\:__download.eclipse.org_modeling_emf_emf_updates_2.9milestones_base_S201212130932/name=Eclipse Modeling Framework (EMF) Base Build Site - Artifact Repository +repositories/http\:__download.eclipse.org_modeling_emf_emf_updates_2.9milestones_base_S201212130932/provider= +repositories/http\:__download.eclipse.org_modeling_emf_emf_updates_2.9milestones_base_S201212130932/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_modeling_emf_emf_updates_2.9milestones_base_S201212130932/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_modeling_emf_emf_updates_2.9milestones_base_S201212130932/uri=http\://download.eclipse.org/modeling/emf/emf/updates/2.9milestones/base/S201212130932/ +repositories/http\:__download.eclipse.org_modeling_emf_emf_updates_2.9milestones_base_S201212130932/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates/enabled=false +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates/isSystem=false +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates/uri=http\://download.eclipse.org/modeling/emft/mwe/updates/ +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases/description= +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases/enabled=true +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases/isSystem=false +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases/name=EMFT MWE Update Site +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases/provider= +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases/suffix=compositeArtifacts.xml +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases/type=org.eclipse.equinox.internal.p2.artifact.repository.CompositeArtifactRepository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases/uri=http\://download.eclipse.org/modeling/emft/mwe/updates/releases +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020506_mwe/description= +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020506_mwe/enabled=false +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020506_mwe/isSystem=true +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020506_mwe/name=MWE Build Site - Artifact Repository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020506_mwe/provider= +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020506_mwe/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020506_mwe/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020506_mwe/uri=http\://download.eclipse.org/modeling/emft/mwe/updates/releases/R201108020506/mwe +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020506_mwe/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020809_mwe2lang/description= +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020809_mwe2lang/enabled=false +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020809_mwe2lang/isSystem=true +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020809_mwe2lang/name=MWE2 Language Build Site - Artifact Repository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020809_mwe2lang/provider= +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020809_mwe2lang/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020809_mwe2lang/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020809_mwe2lang/uri=http\://download.eclipse.org/modeling/emft/mwe/updates/releases/R201108020809/mwe2lang +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020809_mwe2lang/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe/description= +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe/enabled=false +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe/isSystem=true +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe/name=MWE Build Site - Artifact Repository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe/provider= +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe/uri=http\://download.eclipse.org/modeling/emft/mwe/updates/releases/R201110310946/mwe +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe2lang/description= +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe2lang/enabled=false +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe2lang/isSystem=true +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe2lang/name=MWE2 Language Build Site - Artifact Repository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe2lang/provider= +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe2lang/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe2lang/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe2lang/uri=http\://download.eclipse.org/modeling/emft/mwe/updates/releases/R201110310946/mwe2lang +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe2lang/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112070431_mwe/description= +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112070431_mwe/enabled=true +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112070431_mwe/isSystem=false +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112070431_mwe/name=MWE Build Site - Artifact Repository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112070431_mwe/provider= +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112070431_mwe/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112070431_mwe/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112070431_mwe/uri=http\://download.eclipse.org/modeling/emft/mwe/updates/releases/R201112070431/mwe +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112070431_mwe/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112071250_mwe2lang/description= +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112071250_mwe2lang/enabled=false +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112071250_mwe2lang/isSystem=true +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112071250_mwe2lang/name=MWE2 Language Build Site - Artifact Repository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112071250_mwe2lang/provider= +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112071250_mwe2lang/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112071250_mwe2lang/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112071250_mwe2lang/uri=http\://download.eclipse.org/modeling/emft/mwe/updates/releases/R201112071250/mwe2lang +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112071250_mwe2lang/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206110920_mwe/description= +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206110920_mwe/enabled=false +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206110920_mwe/isSystem=true +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206110920_mwe/name=MWE Build Site - Artifact Repository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206110920_mwe/provider= +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206110920_mwe/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206110920_mwe/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206110920_mwe/uri=http\://download.eclipse.org/modeling/emft/mwe/updates/releases/R201206110920/mwe +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206110920_mwe/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206120758_mwe2lang/description= +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206120758_mwe2lang/enabled=false +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206120758_mwe2lang/isSystem=true +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206120758_mwe2lang/name=MWE2 Language Build Site - Artifact Repository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206120758_mwe2lang/provider= +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206120758_mwe2lang/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206120758_mwe2lang/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206120758_mwe2lang/uri=http\://download.eclipse.org/modeling/emft/mwe/updates/releases/R201206120758/mwe2lang +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206120758_mwe2lang/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios/description= +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios/enabled=false +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios/isSystem=true +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios/name=EMFT MWE Update Site Helios SR2 +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios/provider= +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios/suffix=compositeArtifacts.xml +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios/type=org.eclipse.equinox.internal.p2.artifact.repository.CompositeArtifactRepository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios/uri=http\://download.eclipse.org/modeling/emft/mwe/updates/releases/helios +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102150556_mwe/description= +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102150556_mwe/enabled=false +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102150556_mwe/isSystem=true +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102150556_mwe/name=MWE Build Site - Artifact Repository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102150556_mwe/provider= +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102150556_mwe/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102150556_mwe/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102150556_mwe/uri=http\://download.eclipse.org/modeling/emft/mwe/updates/releases/helios/R201102150556/mwe +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102150556_mwe/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102151014_mwe2lang/description= +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102151014_mwe2lang/enabled=false +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102151014_mwe2lang/isSystem=true +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102151014_mwe2lang/name=MWE2 Language Build Site - Artifact Repository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102151014_mwe2lang/provider= +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102151014_mwe2lang/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102151014_mwe2lang/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102151014_mwe2lang/uri=http\://download.eclipse.org/modeling/emft/mwe/updates/releases/helios/R201102151014/mwe2lang +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102151014_mwe2lang/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_m2t_updates/enabled=false +repositories/http\:__download.eclipse.org_modeling_m2t_updates/isSystem=false +repositories/http\:__download.eclipse.org_modeling_m2t_updates/uri=http\://download.eclipse.org/modeling/m2t/updates/ +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates/enabled=false +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates/isSystem=false +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates/uri=http\://download.eclipse.org/modeling/m2t/xpand/updates/ +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases/description= +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases/enabled=false +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases/isSystem=true +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases/name=M2T Xpand Update Site +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases/provider= +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases/suffix=compositeArtifacts.xml +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases/type=org.eclipse.equinox.internal.p2.artifact.repository.CompositeArtifactRepository +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases/uri=http\://download.eclipse.org/modeling/m2t/xpand/updates/releases +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201108020519/description= +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201108020519/enabled=false +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201108020519/isSystem=true +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201108020519/name=Xpand/Xtend Build Site - Artifact Repository +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201108020519/provider= +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201108020519/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201108020519/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201108020519/uri=http\://download.eclipse.org/modeling/m2t/xpand/updates/releases/R201108020519 +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201108020519/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201206110941/description= +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201206110941/enabled=false +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201206110941/isSystem=true +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201206110941/name=Xpand/Xtend Build Site - Artifact Repository +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201206110941/provider= +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201206110941/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201206110941/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201206110941/uri=http\://download.eclipse.org/modeling/m2t/xpand/updates/releases/R201206110941 +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201206110941/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_helios/description= +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_helios/enabled=false +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_helios/isSystem=true +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_helios/name=m2t.xpand Artifacts +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_helios/provider= +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_helios/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_helios/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_helios/uri=http\://download.eclipse.org/modeling/m2t/xpand/updates/releases/helios +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_helios/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_tmf_updates/enabled=false +repositories/http\:__download.eclipse.org_modeling_tmf_updates/isSystem=false +repositories/http\:__download.eclipse.org_modeling_tmf_updates/uri=http\://download.eclipse.org/modeling/tmf/updates/ +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates/enabled=false +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates/isSystem=false +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates/uri=http\://download.eclipse.org/modeling/tmf/xtext/updates/ +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_composite_releases/count=1 +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_composite_releases/description= +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_composite_releases/enabled=true +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_composite_releases/isSystem=false +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_composite_releases/name=Xtext All In One (Releases) +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_composite_releases/nickname=Xtext All In One - Releases +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_composite_releases/provider= +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_composite_releases/suffix=compositeArtifacts.xml +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_composite_releases/type=org.eclipse.equinox.internal.p2.artifact.repository.CompositeArtifactRepository +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_composite_releases/uri=http\://download.eclipse.org/modeling/tmf/xtext/updates/composite/releases/ +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_composite_releases/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases/description= +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases/enabled=false +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases/isSystem=true +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases/name=TMF Xtext Update Site (Releases) +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases/provider= +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases/suffix=compositeArtifacts.xml +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases/type=org.eclipse.equinox.internal.p2.artifact.repository.CompositeArtifactRepository +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases/uri=http\://download.eclipse.org/modeling/tmf/xtext/updates/releases +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201108020636/description= +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201108020636/enabled=false +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201108020636/isSystem=true +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201108020636/name=Xtext Update Site - Artifact Repository +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201108020636/provider= +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201108020636/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201108020636/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201108020636/uri=http\://download.eclipse.org/modeling/tmf/xtext/updates/releases/head/R201108020636 +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201108020636/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201112130541/description= +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201112130541/enabled=false +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201112130541/isSystem=true +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201112130541/name=Xtext Update Site - Artifact Repository +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201112130541/provider= +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201112130541/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201112130541/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201112130541/uri=http\://download.eclipse.org/modeling/tmf/xtext/updates/releases/head/R201112130541 +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201112130541/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201206120633/description= +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201206120633/enabled=false +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201206120633/isSystem=true +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201206120633/name=Xtext Update Site - Artifact Repository +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201206120633/provider= +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201206120633/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201206120633/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201206120633/uri=http\://download.eclipse.org/modeling/tmf/xtext/updates/releases/head/R201206120633 +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201206120633/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_helios_R201102150722/description= +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_helios_R201102150722/enabled=false +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_helios_R201102150722/isSystem=true +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_helios_R201102150722/name=Xtext Update Site - Artifact Repository +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_helios_R201102150722/provider= +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_helios_R201102150722/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_helios_R201102150722/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_helios_R201102150722/uri=http\://download.eclipse.org/modeling/tmf/xtext/updates/releases/helios/R201102150722 +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_helios_R201102150722/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201111141332/description= +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201111141332/enabled=false +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201111141332/isSystem=true +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201111141332/name=Xtext Update Site - Artifact Repository +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201111141332/provider= +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201111141332/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201111141332/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201111141332/uri=http\://download.eclipse.org/modeling/tmf/xtext/updates/releases/maintenance/R201111141332 +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201111141332/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201208210947/description= +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201208210947/enabled=false +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201208210947/isSystem=true +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201208210947/name=Xtext Update Site - Artifact Repository +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201208210947/provider= +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201208210947/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201208210947/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201208210947/uri=http\://download.eclipse.org/modeling/tmf/xtext/updates/releases/maintenance/R201208210947/ +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201208210947/version=1.0.0 +repositories/http\:__download.eclipse.org_mylyn_releases_3.8/enabled=false +repositories/http\:__download.eclipse.org_mylyn_releases_3.8/isSystem=false +repositories/http\:__download.eclipse.org_mylyn_releases_3.8/uri=http\://download.eclipse.org/mylyn/releases/3.8 +repositories/http\:__download.eclipse.org_mylyn_releases_juno/enabled=false +repositories/http\:__download.eclipse.org_mylyn_releases_juno/isSystem=false +repositories/http\:__download.eclipse.org_mylyn_releases_juno/uri=http\://download.eclipse.org/mylyn/releases/juno/ +repositories/http\:__download.eclipse.org_releases_juno/enabled=false +repositories/http\:__download.eclipse.org_releases_juno/isSystem=false +repositories/http\:__download.eclipse.org_releases_juno/uri=http\://download.eclipse.org/releases/juno +repositories/http\:__download.eclipse.org_releases_juno_201302220900/description= +repositories/http\:__download.eclipse.org_releases_juno_201302220900/enabled=true +repositories/http\:__download.eclipse.org_releases_juno_201302220900/isSystem=false +repositories/http\:__download.eclipse.org_releases_juno_201302220900/name=juno/201302220900 +repositories/http\:__download.eclipse.org_releases_juno_201302220900/provider= +repositories/http\:__download.eclipse.org_releases_juno_201302220900/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_releases_juno_201302220900/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_releases_juno_201302220900/uri=http\://download.eclipse.org/releases/juno/201302220900 +repositories/http\:__download.eclipse.org_releases_juno_201302220900/version=1.0.0 +repositories/http\:__download.eclipse.org_releases_kepler/description= +repositories/http\:__download.eclipse.org_releases_kepler/enabled=true +repositories/http\:__download.eclipse.org_releases_kepler/isSystem=false +repositories/http\:__download.eclipse.org_releases_kepler/name=Kepler repository +repositories/http\:__download.eclipse.org_releases_kepler/nickname=Kepler +repositories/http\:__download.eclipse.org_releases_kepler/provider= +repositories/http\:__download.eclipse.org_releases_kepler/suffix=compositeArtifacts.xml +repositories/http\:__download.eclipse.org_releases_kepler/type=org.eclipse.equinox.internal.p2.artifact.repository.CompositeArtifactRepository +repositories/http\:__download.eclipse.org_releases_kepler/uri=http\://download.eclipse.org/releases/kepler +repositories/http\:__download.eclipse.org_releases_kepler/version=1.0.0 +repositories/http\:__download.eclipse.org_releases_kepler_201212210900/description= +repositories/http\:__download.eclipse.org_releases_kepler_201212210900/enabled=false +repositories/http\:__download.eclipse.org_releases_kepler_201212210900/isSystem=true +repositories/http\:__download.eclipse.org_releases_kepler_201212210900/name=kepler/201212210900 +repositories/http\:__download.eclipse.org_releases_kepler_201212210900/provider= +repositories/http\:__download.eclipse.org_releases_kepler_201212210900/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_releases_kepler_201212210900/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_releases_kepler_201212210900/uri=http\://download.eclipse.org/releases/kepler/201212210900 +repositories/http\:__download.eclipse.org_releases_kepler_201212210900/version=1.0.0 +repositories/http\:__download.eclipse.org_releases_kepler_201302080900/description= +repositories/http\:__download.eclipse.org_releases_kepler_201302080900/enabled=true +repositories/http\:__download.eclipse.org_releases_kepler_201302080900/isSystem=false +repositories/http\:__download.eclipse.org_releases_kepler_201302080900/name=kepler/201302080900 +repositories/http\:__download.eclipse.org_releases_kepler_201302080900/provider= +repositories/http\:__download.eclipse.org_releases_kepler_201302080900/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_releases_kepler_201302080900/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_releases_kepler_201302080900/uri=http\://download.eclipse.org/releases/kepler/201302080900 +repositories/http\:__download.eclipse.org_releases_kepler_201302080900/version=1.0.0 +repositories/http\:__download.eclipse.org_technology_epp_packages_kepler/description= +repositories/http\:__download.eclipse.org_technology_epp_packages_kepler/enabled=false +repositories/http\:__download.eclipse.org_technology_epp_packages_kepler/isSystem=true +repositories/http\:__download.eclipse.org_technology_epp_packages_kepler/name=Feature - Artifact Repository +repositories/http\:__download.eclipse.org_technology_epp_packages_kepler/provider= +repositories/http\:__download.eclipse.org_technology_epp_packages_kepler/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_technology_epp_packages_kepler/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_technology_epp_packages_kepler/uri=http\://download.eclipse.org/technology/epp/packages/kepler/ +repositories/http\:__download.eclipse.org_technology_epp_packages_kepler/version=1.0.0 +repositories/http\:__download.eclipse.org_technology_subversive_1.0_update-site/description= +repositories/http\:__download.eclipse.org_technology_subversive_1.0_update-site/enabled=true +repositories/http\:__download.eclipse.org_technology_subversive_1.0_update-site/isSystem=false +repositories/http\:__download.eclipse.org_technology_subversive_1.0_update-site/name=Subversive Artifacts +repositories/http\:__download.eclipse.org_technology_subversive_1.0_update-site/provider= +repositories/http\:__download.eclipse.org_technology_subversive_1.0_update-site/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_technology_subversive_1.0_update-site/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_technology_subversive_1.0_update-site/uri=http\://download.eclipse.org/technology/subversive/1.0/update-site/ +repositories/http\:__download.eclipse.org_technology_subversive_1.0_update-site/version=1.0.0 +repositories/http\:__download.eclipse.org_tools_gef_updates_releases/description= +repositories/http\:__download.eclipse.org_tools_gef_updates_releases/enabled=true +repositories/http\:__download.eclipse.org_tools_gef_updates_releases/isSystem=false +repositories/http\:__download.eclipse.org_tools_gef_updates_releases/name=org.eclipse.gef.repository +repositories/http\:__download.eclipse.org_tools_gef_updates_releases/provider= +repositories/http\:__download.eclipse.org_tools_gef_updates_releases/suffix=artifacts.xml +repositories/http\:__download.eclipse.org_tools_gef_updates_releases/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.eclipse.org_tools_gef_updates_releases/uri=http\://download.eclipse.org/tools/gef/updates/releases +repositories/http\:__download.eclipse.org_tools_gef_updates_releases/version=1.0.0 +repositories/http\:__download.eclipse.org_webtools_repository_juno/enabled=false +repositories/http\:__download.eclipse.org_webtools_repository_juno/isSystem=false +repositories/http\:__download.eclipse.org_webtools_repository_juno/uri=http\://download.eclipse.org/webtools/repository/juno +repositories/http\:__download.itemis.com_updates/description= +repositories/http\:__download.itemis.com_updates/enabled=true +repositories/http\:__download.itemis.com_updates/isSystem=false +repositories/http\:__download.itemis.com_updates/name="Xtext Composite Update Site" +repositories/http\:__download.itemis.com_updates/provider= +repositories/http\:__download.itemis.com_updates/suffix=compositeArtifacts.xml +repositories/http\:__download.itemis.com_updates/type=org.eclipse.equinox.internal.p2.artifact.repository.CompositeArtifactRepository +repositories/http\:__download.itemis.com_updates/uri=http\://download.itemis.com/updates/ +repositories/http\:__download.itemis.com_updates/version=1.0.0 +repositories/http\:__download.itemis.com_updates_releases/description= +repositories/http\:__download.itemis.com_updates_releases/enabled=false +repositories/http\:__download.itemis.com_updates_releases/isSystem=true +repositories/http\:__download.itemis.com_updates_releases/name="Xtext Composite Update Site (Releases)" +repositories/http\:__download.itemis.com_updates_releases/provider= +repositories/http\:__download.itemis.com_updates_releases/suffix=compositeArtifacts.xml +repositories/http\:__download.itemis.com_updates_releases/type=org.eclipse.equinox.internal.p2.artifact.repository.CompositeArtifactRepository +repositories/http\:__download.itemis.com_updates_releases/uri=http\://download.itemis.com/updates/releases +repositories/http\:__download.itemis.com_updates_releases/version=1.0.0 +repositories/http\:__download.itemis.com_updates_releases_1.0.0/description= +repositories/http\:__download.itemis.com_updates_releases_1.0.0/enabled=false +repositories/http\:__download.itemis.com_updates_releases_1.0.0/isSystem=true +repositories/http\:__download.itemis.com_updates_releases_1.0.0/name=xtext.antlr Artifacts +repositories/http\:__download.itemis.com_updates_releases_1.0.0/provider= +repositories/http\:__download.itemis.com_updates_releases_1.0.0/suffix=artifacts.xml +repositories/http\:__download.itemis.com_updates_releases_1.0.0/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.itemis.com_updates_releases_1.0.0/uri=http\://download.itemis.com/updates/releases/1.0.0 +repositories/http\:__download.itemis.com_updates_releases_1.0.0/version=1.0.0 +repositories/http\:__download.itemis.com_updates_releases_1.0.1/description= +repositories/http\:__download.itemis.com_updates_releases_1.0.1/enabled=false +repositories/http\:__download.itemis.com_updates_releases_1.0.1/isSystem=true +repositories/http\:__download.itemis.com_updates_releases_1.0.1/name=xtext.antlr Artifacts +repositories/http\:__download.itemis.com_updates_releases_1.0.1/provider= +repositories/http\:__download.itemis.com_updates_releases_1.0.1/suffix=artifacts.xml +repositories/http\:__download.itemis.com_updates_releases_1.0.1/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.itemis.com_updates_releases_1.0.1/uri=http\://download.itemis.com/updates/releases/1.0.1 +repositories/http\:__download.itemis.com_updates_releases_1.0.1/version=1.0.0 +repositories/http\:__download.itemis.com_updates_releases_2.0.0/description= +repositories/http\:__download.itemis.com_updates_releases_2.0.0/enabled=false +repositories/http\:__download.itemis.com_updates_releases_2.0.0/isSystem=true +repositories/http\:__download.itemis.com_updates_releases_2.0.0/name=Xtext Antlr Build Feature - Artifact Repository +repositories/http\:__download.itemis.com_updates_releases_2.0.0/provider= +repositories/http\:__download.itemis.com_updates_releases_2.0.0/suffix=artifacts.xml +repositories/http\:__download.itemis.com_updates_releases_2.0.0/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.itemis.com_updates_releases_2.0.0/uri=http\://download.itemis.com/updates/releases/2.0.0 +repositories/http\:__download.itemis.com_updates_releases_2.0.0/version=1.0.0 +repositories/http\:__download.itemis.de_updates/description= +repositories/http\:__download.itemis.de_updates/enabled=true +repositories/http\:__download.itemis.de_updates/isSystem=false +repositories/http\:__download.itemis.de_updates/name="Xtext Composite Update Site" +repositories/http\:__download.itemis.de_updates/provider= +repositories/http\:__download.itemis.de_updates/suffix=compositeArtifacts.xml +repositories/http\:__download.itemis.de_updates/type=org.eclipse.equinox.internal.p2.artifact.repository.CompositeArtifactRepository +repositories/http\:__download.itemis.de_updates/uri=http\://download.itemis.de/updates/ +repositories/http\:__download.itemis.de_updates/version=1.0.0 +repositories/http\:__download.itemis.de_updates_releases/description= +repositories/http\:__download.itemis.de_updates_releases/enabled=true +repositories/http\:__download.itemis.de_updates_releases/isSystem=false +repositories/http\:__download.itemis.de_updates_releases/name="Xtext Composite Update Site (Releases)" +repositories/http\:__download.itemis.de_updates_releases/provider= +repositories/http\:__download.itemis.de_updates_releases/suffix=compositeArtifacts.xml +repositories/http\:__download.itemis.de_updates_releases/type=org.eclipse.equinox.internal.p2.artifact.repository.CompositeArtifactRepository +repositories/http\:__download.itemis.de_updates_releases/uri=http\://download.itemis.de/updates/releases +repositories/http\:__download.itemis.de_updates_releases/version=1.0.0 +repositories/http\:__download.itemis.de_updates_releases_1.0.0/description= +repositories/http\:__download.itemis.de_updates_releases_1.0.0/enabled=false +repositories/http\:__download.itemis.de_updates_releases_1.0.0/isSystem=true +repositories/http\:__download.itemis.de_updates_releases_1.0.0/name=xtext.antlr Artifacts +repositories/http\:__download.itemis.de_updates_releases_1.0.0/provider= +repositories/http\:__download.itemis.de_updates_releases_1.0.0/suffix=artifacts.xml +repositories/http\:__download.itemis.de_updates_releases_1.0.0/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.itemis.de_updates_releases_1.0.0/uri=http\://download.itemis.de/updates/releases/1.0.0 +repositories/http\:__download.itemis.de_updates_releases_1.0.0/version=1.0.0 +repositories/http\:__download.itemis.de_updates_releases_1.0.1/description= +repositories/http\:__download.itemis.de_updates_releases_1.0.1/enabled=false +repositories/http\:__download.itemis.de_updates_releases_1.0.1/isSystem=true +repositories/http\:__download.itemis.de_updates_releases_1.0.1/name=xtext.antlr Artifacts +repositories/http\:__download.itemis.de_updates_releases_1.0.1/provider= +repositories/http\:__download.itemis.de_updates_releases_1.0.1/suffix=artifacts.xml +repositories/http\:__download.itemis.de_updates_releases_1.0.1/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.itemis.de_updates_releases_1.0.1/uri=http\://download.itemis.de/updates/releases/1.0.1 +repositories/http\:__download.itemis.de_updates_releases_1.0.1/version=1.0.0 +repositories/http\:__download.itemis.de_updates_releases_2.0.0/description= +repositories/http\:__download.itemis.de_updates_releases_2.0.0/enabled=false +repositories/http\:__download.itemis.de_updates_releases_2.0.0/isSystem=true +repositories/http\:__download.itemis.de_updates_releases_2.0.0/name=Xtext Antlr Build Feature - Artifact Repository +repositories/http\:__download.itemis.de_updates_releases_2.0.0/provider= +repositories/http\:__download.itemis.de_updates_releases_2.0.0/suffix=artifacts.xml +repositories/http\:__download.itemis.de_updates_releases_2.0.0/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__download.itemis.de_updates_releases_2.0.0/uri=http\://download.itemis.de/updates/releases/2.0.0 +repositories/http\:__download.itemis.de_updates_releases_2.0.0/version=1.0.0 +repositories/http\:__download.jboss.org_jbosstools_updates_m2eclipse-wtp/enabled=false +repositories/http\:__download.jboss.org_jbosstools_updates_m2eclipse-wtp/isSystem=false +repositories/http\:__download.jboss.org_jbosstools_updates_m2eclipse-wtp/uri=http\://download.jboss.org/jbosstools/updates/m2eclipse-wtp/ +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-mavenarchiver_0.15.0_N_0.15.0.201207090125/description= +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-mavenarchiver_0.15.0_N_0.15.0.201207090125/enabled=true +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-mavenarchiver_0.15.0_N_0.15.0.201207090125/isSystem=false +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-mavenarchiver_0.15.0_N_0.15.0.201207090125/name=M2E Maven Archiver Connector +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-mavenarchiver_0.15.0_N_0.15.0.201207090125/provider= +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-mavenarchiver_0.15.0_N_0.15.0.201207090125/suffix=artifacts.xml +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-mavenarchiver_0.15.0_N_0.15.0.201207090125/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-mavenarchiver_0.15.0_N_0.15.0.201207090125/uri=http\://repo1.maven.org/maven2/.m2e/connectors/m2eclipse-mavenarchiver/0.15.0/N/0.15.0.201207090125/ +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-mavenarchiver_0.15.0_N_0.15.0.201207090125/version=1.0.0 +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-plexus_0.15.0_N_0.15.0.201207090126/description= +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-plexus_0.15.0_N_0.15.0.201207090126/enabled=true +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-plexus_0.15.0_N_0.15.0.201207090126/isSystem=false +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-plexus_0.15.0_N_0.15.0.201207090126/name=M2E Plexus Annotations Connector +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-plexus_0.15.0_N_0.15.0.201207090126/provider= +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-plexus_0.15.0_N_0.15.0.201207090126/suffix=artifacts.xml +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-plexus_0.15.0_N_0.15.0.201207090126/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-plexus_0.15.0_N_0.15.0.201207090126/uri=http\://repo1.maven.org/maven2/.m2e/connectors/m2eclipse-plexus/0.15.0/N/0.15.0.201207090126/ +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-plexus_0.15.0_N_0.15.0.201207090126/version=1.0.0 +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-tycho_0.6.0_N_0.6.0.201207302152/description= +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-tycho_0.6.0_N_0.6.0.201207302152/enabled=true +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-tycho_0.6.0_N_0.6.0.201207302152/isSystem=false +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-tycho_0.6.0_N_0.6.0.201207302152/name=org.sonatype.tycho.update Artifacts +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-tycho_0.6.0_N_0.6.0.201207302152/provider= +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-tycho_0.6.0_N_0.6.0.201207302152/suffix=artifacts.xml +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-tycho_0.6.0_N_0.6.0.201207302152/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-tycho_0.6.0_N_0.6.0.201207302152/uri=http\://repo1.maven.org/maven2/.m2e/connectors/m2eclipse-tycho/0.6.0/N/0.6.0.201207302152/ +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-tycho_0.6.0_N_0.6.0.201207302152/version=1.0.0 +repositories/http\:__update.eclemma.org/description= +repositories/http\:__update.eclemma.org/enabled=true +repositories/http\:__update.eclemma.org/isSystem=false +repositories/http\:__update.eclemma.org/name=EclEmma +repositories/http\:__update.eclemma.org/provider= +repositories/http\:__update.eclemma.org/suffix=artifacts.xml +repositories/http\:__update.eclemma.org/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__update.eclemma.org/uri=http\://update.eclemma.org +repositories/http\:__update.eclemma.org/version=1.0.0 +repositories/http\:__www.eclipse.org_modeling_updates/enabled=false +repositories/http\:__www.eclipse.org_modeling_updates/isSystem=false +repositories/http\:__www.eclipse.org_modeling_updates/uri=http\://www.eclipse.org/modeling/updates/ +repositories/http\:__www.stateofflow.com_UpdateSite/description= +repositories/http\:__www.stateofflow.com_UpdateSite/enabled=true +repositories/http\:__www.stateofflow.com_UpdateSite/isSystem=false +repositories/http\:__www.stateofflow.com_UpdateSite/name=Update Site +repositories/http\:__www.stateofflow.com_UpdateSite/provider= +repositories/http\:__www.stateofflow.com_UpdateSite/suffix=artifacts.xml +repositories/http\:__www.stateofflow.com_UpdateSite/type=org.eclipse.equinox.p2.artifact.repository.simpleRepository +repositories/http\:__www.stateofflow.com_UpdateSite/uri=http\://www.stateofflow.com/UpdateSite/ +repositories/http\:__www.stateofflow.com_UpdateSite/version=1.0.0 diff --git a/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/sharedWithoutBaseAvailable/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.data/.settings/org.eclipse.equinox.p2.metadata.repository.prefs b/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/sharedWithoutBaseAvailable/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.data/.settings/org.eclipse.equinox.p2.metadata.repository.prefs new file mode 100644 index 000000000..742cba699 --- /dev/null +++ b/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/sharedWithoutBaseAvailable/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.data/.settings/org.eclipse.equinox.p2.metadata.repository.prefs @@ -0,0 +1,635 @@ +\://www.stateofflow.com/UpdateSite/= +eclipse.preferences.version=1 +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_.eclipseextension/description= +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_.eclipseextension/enabled=true +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_.eclipseextension/isSystem=true +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_.eclipseextension/name=C\:\\Users\\epasrap\\.eclipse\\org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64\\.eclipseextension +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_.eclipseextension/provider= +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_.eclipseextension/suffix=eclipse +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_.eclipseextension/type=org.eclipse.equinox.p2.extensionlocation.metadataRepository +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_.eclipseextension/uri=file\:/C\:/Users/epasrap/.eclipse/org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64/.eclipseextension +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_.eclipseextension/version=1 +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/isSystem=true +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/name=dropins +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/suffix=content.xml +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/uri=file\:/C\:/Users/epasrap/.eclipse/org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64/configuration/org.eclipse.osgi/bundles/115/data/listener_1925729951/ +repositories/file\:_C\:_Users_epasrap_.eclipse_org.eclipse.platform_4.2.0_1354634885_win32_win32_x86_64_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/version=1.0.0 +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-SDK-M20130131-0800-win32-x86_64_eclipse_p2_org.eclipse.equinox.p2.engine_profileRegistry_SDKProfile.profile/description= +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-SDK-M20130131-0800-win32-x86_64_eclipse_p2_org.eclipse.equinox.p2.engine_profileRegistry_SDKProfile.profile/enabled=false +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-SDK-M20130131-0800-win32-x86_64_eclipse_p2_org.eclipse.equinox.p2.engine_profileRegistry_SDKProfile.profile/isSystem=true +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-SDK-M20130131-0800-win32-x86_64_eclipse_p2_org.eclipse.equinox.p2.engine_profileRegistry_SDKProfile.profile/name=file\:/C\:/dev/eclipse%20distros/eclipse-SDK-M20130131-0800-win32-x86_64/eclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/ +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-SDK-M20130131-0800-win32-x86_64_eclipse_p2_org.eclipse.equinox.p2.engine_profileRegistry_SDKProfile.profile/provider= +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-SDK-M20130131-0800-win32-x86_64_eclipse_p2_org.eclipse.equinox.p2.engine_profileRegistry_SDKProfile.profile/suffix=profile +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-SDK-M20130131-0800-win32-x86_64_eclipse_p2_org.eclipse.equinox.p2.engine_profileRegistry_SDKProfile.profile/type=org.eclipse.equinox.p2.engine.repo.metadataRepository +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-SDK-M20130131-0800-win32-x86_64_eclipse_p2_org.eclipse.equinox.p2.engine_profileRegistry_SDKProfile.profile/uri=file\:/C\:/dev/eclipse%20distros/eclipse-SDK-M20130131-0800-win32-x86_64/eclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/ +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-SDK-M20130131-0800-win32-x86_64_eclipse_p2_org.eclipse.equinox.p2.engine_profileRegistry_SDKProfile.profile/version=1 +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_configuration_org.eclipse.osgi_bundles_95_data_listener_1925729951/enabled=false +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_configuration_org.eclipse.osgi_bundles_95_data_listener_1925729951/isSystem=true +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_configuration_org.eclipse.osgi_bundles_95_data_listener_1925729951/name=dropins +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_configuration_org.eclipse.osgi_bundles_95_data_listener_1925729951/suffix=content.xml +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_configuration_org.eclipse.osgi_bundles_95_data_listener_1925729951/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_configuration_org.eclipse.osgi_bundles_95_data_listener_1925729951/uri=file\:/C\:/dev/eclipse%20distros/eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64/eclipse/configuration/org.eclipse.osgi/bundles/95/data/listener_1925729951/ +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_configuration_org.eclipse.osgi_bundles_95_data_listener_1925729951/version=1.0.0 +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_p2_org.eclipse.equinox.p2.engine_profileRegistry_DefaultProfile.profile/description= +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_p2_org.eclipse.equinox.p2.engine_profileRegistry_DefaultProfile.profile/enabled=false +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_p2_org.eclipse.equinox.p2.engine_profileRegistry_DefaultProfile.profile/isSystem=true +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_p2_org.eclipse.equinox.p2.engine_profileRegistry_DefaultProfile.profile/name=file\:/C\:/dev/eclipse%20distros/eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64/eclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/ +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_p2_org.eclipse.equinox.p2.engine_profileRegistry_DefaultProfile.profile/provider= +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_p2_org.eclipse.equinox.p2.engine_profileRegistry_DefaultProfile.profile/suffix=profile +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_p2_org.eclipse.equinox.p2.engine_profileRegistry_DefaultProfile.profile/type=org.eclipse.equinox.p2.engine.repo.metadataRepository +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_p2_org.eclipse.equinox.p2.engine_profileRegistry_DefaultProfile.profile/uri=file\:/C\:/dev/eclipse%20distros/eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64/eclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/ +repositories/file\:_C\:_dev_eclipse%20distros_eclipse-euroasia-SDK-3.8.2-win32.win32.x86_64_eclipse_p2_org.eclipse.equinox.p2.engine_profileRegistry_DefaultProfile.profile/version=1 +repositories/file\:_C\:_dev_eclipse-SDK-I20130212-0800-win32-x86_64_eclipse_.eclipseextension/description= +repositories/file\:_C\:_dev_eclipse-SDK-I20130212-0800-win32-x86_64_eclipse_.eclipseextension/name=C\:\\dev\\eclipse-SDK-I20130212-0800-win32-x86_64\\eclipse\\.eclipseextension +repositories/file\:_C\:_dev_eclipse-SDK-I20130212-0800-win32-x86_64_eclipse_.eclipseextension/provider= +repositories/file\:_C\:_dev_eclipse-SDK-I20130212-0800-win32-x86_64_eclipse_.eclipseextension/suffix=eclipse +repositories/file\:_C\:_dev_eclipse-SDK-I20130212-0800-win32-x86_64_eclipse_.eclipseextension/type=org.eclipse.equinox.p2.extensionlocation.metadataRepository +repositories/file\:_C\:_dev_eclipse-SDK-I20130212-0800-win32-x86_64_eclipse_.eclipseextension/uri=file\:/C\:/dev/eclipse-SDK-I20130212-0800-win32-x86_64/eclipse/.eclipseextension +repositories/file\:_C\:_dev_eclipse-SDK-I20130212-0800-win32-x86_64_eclipse_.eclipseextension/version=1 +repositories/file\:_C\:_dev_eclipse_.eclipseextension/description= +repositories/file\:_C\:_dev_eclipse_.eclipseextension/enabled=true +repositories/file\:_C\:_dev_eclipse_.eclipseextension/isSystem=true +repositories/file\:_C\:_dev_eclipse_.eclipseextension/name=C\:\\dev\\eclipse\\.eclipseextension +repositories/file\:_C\:_dev_eclipse_.eclipseextension/provider= +repositories/file\:_C\:_dev_eclipse_.eclipseextension/suffix=eclipse +repositories/file\:_C\:_dev_eclipse_.eclipseextension/type=org.eclipse.equinox.p2.extensionlocation.metadataRepository +repositories/file\:_C\:_dev_eclipse_.eclipseextension/uri=file\:/C\:/dev/eclipse/.eclipseextension +repositories/file\:_C\:_dev_eclipse_.eclipseextension/version=1 +repositories/file\:_C\:_dev_eclipse_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/isSystem=true +repositories/file\:_C\:_dev_eclipse_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/name=dropins +repositories/file\:_C\:_dev_eclipse_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/suffix=content.xml +repositories/file\:_C\:_dev_eclipse_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/file\:_C\:_dev_eclipse_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/uri=file\:/C\:/dev/eclipse/configuration/org.eclipse.osgi/bundles/115/data/listener_1925729951/ +repositories/file\:_C\:_dev_eclipse_configuration_org.eclipse.osgi_bundles_115_data_listener_1925729951/version=1.0.0 +repositories/file\:_C\:_dev_eclipse_p2_org.eclipse.equinox.p2.engine_profileRegistry_SDKProfile.profile/description= +repositories/file\:_C\:_dev_eclipse_p2_org.eclipse.equinox.p2.engine_profileRegistry_SDKProfile.profile/enabled=false +repositories/file\:_C\:_dev_eclipse_p2_org.eclipse.equinox.p2.engine_profileRegistry_SDKProfile.profile/isSystem=true +repositories/file\:_C\:_dev_eclipse_p2_org.eclipse.equinox.p2.engine_profileRegistry_SDKProfile.profile/name=file\:/C\:/dev/eclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/ +repositories/file\:_C\:_dev_eclipse_p2_org.eclipse.equinox.p2.engine_profileRegistry_SDKProfile.profile/provider= +repositories/file\:_C\:_dev_eclipse_p2_org.eclipse.equinox.p2.engine_profileRegistry_SDKProfile.profile/suffix=profile +repositories/file\:_C\:_dev_eclipse_p2_org.eclipse.equinox.p2.engine_profileRegistry_SDKProfile.profile/type=org.eclipse.equinox.p2.engine.repo.metadataRepository +repositories/file\:_C\:_dev_eclipse_p2_org.eclipse.equinox.p2.engine_profileRegistry_SDKProfile.profile/uri=file\:/C\:/dev/eclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/ +repositories/file\:_C\:_dev_eclipse_p2_org.eclipse.equinox.p2.engine_profileRegistry_SDKProfile.profile/version=1 +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install12/enabled=true +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install12/isSystem=false +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install12/name=Exported Repository +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install12/nickname=Exported Repository +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install12/suffix=content.xml +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install12/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install12/uri=file\:/C\:/dev/p2verbatim/.metadata/.plugins/org.eclipse.pde.core/install12/ +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install12/version=1.0.0 +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install5/enabled=true +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install5/isSystem=false +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install5/name=Exported Repository +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install5/nickname=Exported Repository +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install5/suffix=content.xml +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install5/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install5/uri=file\:/C\:/dev/p2verbatim/.metadata/.plugins/org.eclipse.pde.core/install5/ +repositories/file\:_C\:_dev_p2verbatim_.metadata_.plugins_org.eclipse.pde.core_install5/version=1.0.0 +repositories/file\:_c\:_dev_p2atEclipse_USF/name=Update Site +repositories/file\:_c\:_dev_p2atEclipse_USF/suffix=content.xml +repositories/file\:_c\:_dev_p2atEclipse_USF/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/file\:_c\:_dev_p2atEclipse_USF/uri=file\:/c\:/dev/p2atEclipse/USF/ +repositories/file\:_c\:_dev_p2atEclipse_USF/version=1.0.0 +repositories/http\:__community.polarion.com_projects_subversive_download_eclipse_3.0_kepler-site/enabled=true +repositories/http\:__community.polarion.com_projects_subversive_download_eclipse_3.0_kepler-site/isSystem=false +repositories/http\:__community.polarion.com_projects_subversive_download_eclipse_3.0_kepler-site/name=Update Site +repositories/http\:__community.polarion.com_projects_subversive_download_eclipse_3.0_kepler-site/suffix=content.xml +repositories/http\:__community.polarion.com_projects_subversive_download_eclipse_3.0_kepler-site/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__community.polarion.com_projects_subversive_download_eclipse_3.0_kepler-site/uri=http\://community.polarion.com/projects/subversive/download/eclipse/3.0/kepler-site/ +repositories/http\:__community.polarion.com_projects_subversive_download_eclipse_3.0_kepler-site/version=1.0.0 +repositories/http\:__community.polarion.com_projects_subversive_download_eclipse_3.0_update-site/enabled=false +repositories/http\:__community.polarion.com_projects_subversive_download_eclipse_3.0_update-site/isSystem=false +repositories/http\:__community.polarion.com_projects_subversive_download_eclipse_3.0_update-site/uri=http\://community.polarion.com/projects/subversive/download/eclipse/3.0/update-site/ +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds/description= +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds/enabled=true +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds/isSystem=false +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds/name="Eclipse Project Test Site" +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds/nickname="Eclipse Project Test Site" +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds/provider= +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds/suffix=compositeContent.xml +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds/type=org.eclipse.equinox.internal.p2.metadata.repository.CompositeMetadataRepository +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds/uri=http\://download.eclipse.org/eclipse/updates/3.8-M-builds +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121205-1000/enabled=true +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121205-1000/isSystem=false +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121205-1000/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121205-1000/suffix=content.xml +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121205-1000/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121205-1000/uri=http\://download.eclipse.org/eclipse/updates/3.8-M-builds/M20121205-1000 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121205-1000/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1000/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1000/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1000/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1000/suffix=content.xml +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1000/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1000/uri=http\://download.eclipse.org/eclipse/updates/3.8-M-builds/M20121212-1000 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1000/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1600/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1600/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1600/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1600/suffix=content.xml +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1600/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1600/uri=http\://download.eclipse.org/eclipse/updates/3.8-M-builds/M20121212-1600 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121212-1600/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121219-1000/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121219-1000/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121219-1000/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121219-1000/suffix=content.xml +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121219-1000/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121219-1000/uri=http\://download.eclipse.org/eclipse/updates/3.8-M-builds/M20121219-1000 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20121219-1000/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130102-1000/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130102-1000/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130102-1000/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130102-1000/suffix=content.xml +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130102-1000/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130102-1000/uri=http\://download.eclipse.org/eclipse/updates/3.8-M-builds/M20130102-1000 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130102-1000/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130109-1000/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130109-1000/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130109-1000/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130109-1000/suffix=content.xml +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130109-1000/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130109-1000/uri=http\://download.eclipse.org/eclipse/updates/3.8-M-builds/M20130109-1000 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130109-1000/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130116-1030/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130116-1030/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130116-1030/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130116-1030/suffix=content.xml +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130116-1030/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130116-1030/uri=http\://download.eclipse.org/eclipse/updates/3.8-M-builds/M20130116-1030 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130116-1030/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130123-1500/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130123-1500/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130123-1500/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130123-1500/suffix=content.xml +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130123-1500/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130123-1500/uri=http\://download.eclipse.org/eclipse/updates/3.8-M-builds/M20130123-1500 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130123-1500/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130124-1500/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130124-1500/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130124-1500/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130124-1500/suffix=content.xml +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130124-1500/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130124-1500/uri=http\://download.eclipse.org/eclipse/updates/3.8-M-builds/M20130124-1500 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130124-1500/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130125-1000/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130125-1000/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130125-1000/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130125-1000/suffix=content.xml +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130125-1000/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130125-1000/uri=http\://download.eclipse.org/eclipse/updates/3.8-M-builds/M20130125-1000 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130125-1000/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130131-0800/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130131-0800/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130131-0800/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130131-0800/suffix=content.xml +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130131-0800/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130131-0800/uri=http\://download.eclipse.org/eclipse/updates/3.8-M-builds/M20130131-0800 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_M20130131-0800/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_categories/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_categories/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_categories/name=The Eclipse Project Updates +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_categories/suffix=content.xml +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_categories/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_categories/uri=http\://download.eclipse.org/eclipse/updates/3.8-M-builds/categories +repositories/http\:__download.eclipse.org_eclipse_updates_3.8-M-builds_categories/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_4.2/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_4.2/isSystem=false +repositories/http\:__download.eclipse.org_eclipse_updates_4.2/uri=http\://download.eclipse.org/eclipse/updates/4.2 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds/description= +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds/name="Eclipse Project Kepler 4.3 I-builds" +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds/provider= +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds/suffix=compositeContent.xml +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds/type=org.eclipse.equinox.internal.p2.metadata.repository.CompositeMetadataRepository +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds/uri=http\://download.eclipse.org/eclipse/updates/4.3-I-builds +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130130-2000/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130130-2000/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130130-2000/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130130-2000/suffix=content.xml +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130130-2000/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130130-2000/uri=http\://download.eclipse.org/eclipse/updates/4.3-I-builds/I20130130-2000 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130130-2000/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130204-1400/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130204-1400/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130204-1400/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130204-1400/suffix=content.xml +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130204-1400/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130204-1400/uri=http\://download.eclipse.org/eclipse/updates/4.3-I-builds/I20130204-1400 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130204-1400/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130205-0800/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130205-0800/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130205-0800/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130205-0800/suffix=content.xml +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130205-0800/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130205-0800/uri=http\://download.eclipse.org/eclipse/updates/4.3-I-builds/I20130205-0800 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130205-0800/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130212-0800/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130212-0800/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130212-0800/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130212-0800/suffix=content.xml +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130212-0800/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130212-0800/uri=http\://download.eclipse.org/eclipse/updates/4.3-I-builds/I20130212-0800 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130212-0800/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-0800/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-0800/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-0800/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-0800/suffix=content.xml +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-0800/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-0800/uri=http\://download.eclipse.org/eclipse/updates/4.3-I-builds/I20130219-0800 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-0800/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-1600/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-1600/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-1600/name="Eclipse Project Software Repository" +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-1600/suffix=content.xml +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-1600/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-1600/uri=http\://download.eclipse.org/eclipse/updates/4.3-I-builds/I20130219-1600 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_I20130219-1600/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_categoriesKepler/enabled=false +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_categoriesKepler/isSystem=true +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_categoriesKepler/name=The Eclipse Project Updates +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_categoriesKepler/suffix=content.xml +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_categoriesKepler/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_categoriesKepler/uri=http\://download.eclipse.org/eclipse/updates/4.3-I-builds/categoriesKepler +repositories/http\:__download.eclipse.org_eclipse_updates_4.3-I-builds_categoriesKepler/version=1.0.0 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/description= +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/name=Empty repository +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/provider= +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/suffix=compositeContent.xml +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/type=org.eclipse.equinox.internal.p2.metadata.repository.CompositeMetadataRepository +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/uri=http\://download.eclipse.org/eclipse/updates/4.3 +repositories/http\:__download.eclipse.org_eclipse_updates_4.3/version=1.0.0 +repositories/http\:__download.eclipse.org_egit_updates-2.3/enabled=true +repositories/http\:__download.eclipse.org_egit_updates-2.3/isSystem=false +repositories/http\:__download.eclipse.org_egit_updates-2.3/name=EGit P2 Repository +repositories/http\:__download.eclipse.org_egit_updates-2.3/suffix=content.xml +repositories/http\:__download.eclipse.org_egit_updates-2.3/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_egit_updates-2.3/uri=http\://download.eclipse.org/egit/updates-2.3 +repositories/http\:__download.eclipse.org_egit_updates-2.3/version=1.0.0 +repositories/http\:__download.eclipse.org_egit_updates/enabled=false +repositories/http\:__download.eclipse.org_egit_updates/isSystem=false +repositories/http\:__download.eclipse.org_egit_updates/uri=http\://download.eclipse.org/egit/updates +repositories/http\:__download.eclipse.org_modeling_emf_emf_updates_2.9milestones_base_S201212130932/enabled=true +repositories/http\:__download.eclipse.org_modeling_emf_emf_updates_2.9milestones_base_S201212130932/isSystem=false +repositories/http\:__download.eclipse.org_modeling_emf_emf_updates_2.9milestones_base_S201212130932/name=Eclipse Modeling Framework (EMF) Base Build Site +repositories/http\:__download.eclipse.org_modeling_emf_emf_updates_2.9milestones_base_S201212130932/nickname=Eclipse Modeling Framework (EMF) Base Build Site +repositories/http\:__download.eclipse.org_modeling_emf_emf_updates_2.9milestones_base_S201212130932/suffix=content.xml +repositories/http\:__download.eclipse.org_modeling_emf_emf_updates_2.9milestones_base_S201212130932/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_modeling_emf_emf_updates_2.9milestones_base_S201212130932/uri=http\://download.eclipse.org/modeling/emf/emf/updates/2.9milestones/base/S201212130932/ +repositories/http\:__download.eclipse.org_modeling_emf_emf_updates_2.9milestones_base_S201212130932/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates/enabled=false +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates/isSystem=false +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates/uri=http\://download.eclipse.org/modeling/emft/mwe/updates/ +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases/description= +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases/enabled=false +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases/isSystem=true +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases/name=EMFT MWE Update Site +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases/provider= +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases/suffix=compositeContent.xml +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases/type=org.eclipse.equinox.internal.p2.metadata.repository.CompositeMetadataRepository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases/uri=http\://download.eclipse.org/modeling/emft/mwe/updates/releases +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020506_mwe/enabled=false +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020506_mwe/isSystem=true +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020506_mwe/name=MWE Build Site +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020506_mwe/suffix=content.xml +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020506_mwe/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020506_mwe/uri=http\://download.eclipse.org/modeling/emft/mwe/updates/releases/R201108020506/mwe +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020506_mwe/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020809_mwe2lang/enabled=false +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020809_mwe2lang/isSystem=true +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020809_mwe2lang/name=MWE2 Language Build Site +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020809_mwe2lang/suffix=content.xml +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020809_mwe2lang/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020809_mwe2lang/uri=http\://download.eclipse.org/modeling/emft/mwe/updates/releases/R201108020809/mwe2lang +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201108020809_mwe2lang/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe/enabled=false +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe/isSystem=true +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe/name=MWE Build Site +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe/suffix=content.xml +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe/uri=http\://download.eclipse.org/modeling/emft/mwe/updates/releases/R201110310946/mwe +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe2lang/enabled=false +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe2lang/isSystem=true +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe2lang/name=MWE2 Language Build Site +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe2lang/suffix=content.xml +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe2lang/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe2lang/uri=http\://download.eclipse.org/modeling/emft/mwe/updates/releases/R201110310946/mwe2lang +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201110310946_mwe2lang/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112070431_mwe/enabled=false +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112070431_mwe/isSystem=true +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112070431_mwe/name=MWE Build Site +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112070431_mwe/suffix=content.xml +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112070431_mwe/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112070431_mwe/uri=http\://download.eclipse.org/modeling/emft/mwe/updates/releases/R201112070431/mwe +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112070431_mwe/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112071250_mwe2lang/enabled=false +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112071250_mwe2lang/isSystem=true +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112071250_mwe2lang/name=MWE2 Language Build Site +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112071250_mwe2lang/suffix=content.xml +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112071250_mwe2lang/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112071250_mwe2lang/uri=http\://download.eclipse.org/modeling/emft/mwe/updates/releases/R201112071250/mwe2lang +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201112071250_mwe2lang/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206110920_mwe/enabled=false +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206110920_mwe/isSystem=true +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206110920_mwe/name=MWE Build Site +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206110920_mwe/suffix=content.xml +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206110920_mwe/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206110920_mwe/uri=http\://download.eclipse.org/modeling/emft/mwe/updates/releases/R201206110920/mwe +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206110920_mwe/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206120758_mwe2lang/enabled=false +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206120758_mwe2lang/isSystem=true +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206120758_mwe2lang/name=MWE2 Language Build Site +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206120758_mwe2lang/suffix=content.xml +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206120758_mwe2lang/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206120758_mwe2lang/uri=http\://download.eclipse.org/modeling/emft/mwe/updates/releases/R201206120758/mwe2lang +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_R201206120758_mwe2lang/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios/description= +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios/enabled=false +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios/isSystem=true +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios/name=EMFT MWE Update Site Helios SR2 +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios/provider= +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios/suffix=compositeContent.xml +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios/type=org.eclipse.equinox.internal.p2.metadata.repository.CompositeMetadataRepository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios/uri=http\://download.eclipse.org/modeling/emft/mwe/updates/releases/helios +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102150556_mwe/enabled=false +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102150556_mwe/isSystem=true +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102150556_mwe/name=MWE Build Site +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102150556_mwe/suffix=content.xml +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102150556_mwe/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102150556_mwe/uri=http\://download.eclipse.org/modeling/emft/mwe/updates/releases/helios/R201102150556/mwe +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102150556_mwe/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102151014_mwe2lang/enabled=false +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102151014_mwe2lang/isSystem=true +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102151014_mwe2lang/name=MWE2 Language Build Site +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102151014_mwe2lang/suffix=content.xml +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102151014_mwe2lang/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102151014_mwe2lang/uri=http\://download.eclipse.org/modeling/emft/mwe/updates/releases/helios/R201102151014/mwe2lang +repositories/http\:__download.eclipse.org_modeling_emft_mwe_updates_releases_helios_R201102151014_mwe2lang/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_m2t_updates/enabled=false +repositories/http\:__download.eclipse.org_modeling_m2t_updates/isSystem=false +repositories/http\:__download.eclipse.org_modeling_m2t_updates/uri=http\://download.eclipse.org/modeling/m2t/updates/ +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates/enabled=false +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates/isSystem=false +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates/uri=http\://download.eclipse.org/modeling/m2t/xpand/updates/ +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases/description= +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases/enabled=false +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases/isSystem=true +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases/name=M2T Xpand Update Site +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases/provider= +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases/suffix=compositeContent.xml +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases/type=org.eclipse.equinox.internal.p2.metadata.repository.CompositeMetadataRepository +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases/uri=http\://download.eclipse.org/modeling/m2t/xpand/updates/releases +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201108020519/enabled=false +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201108020519/isSystem=true +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201108020519/name=Xpand/Xtend Build Site +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201108020519/suffix=content.xml +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201108020519/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201108020519/uri=http\://download.eclipse.org/modeling/m2t/xpand/updates/releases/R201108020519 +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201108020519/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201206110941/enabled=false +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201206110941/isSystem=true +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201206110941/name=Xpand/Xtend Build Site +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201206110941/suffix=content.xml +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201206110941/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201206110941/uri=http\://download.eclipse.org/modeling/m2t/xpand/updates/releases/R201206110941 +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_R201206110941/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_helios/enabled=false +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_helios/isSystem=true +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_helios/name=m2t.xpand Update Site +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_helios/suffix=content.xml +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_helios/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_helios/uri=http\://download.eclipse.org/modeling/m2t/xpand/updates/releases/helios +repositories/http\:__download.eclipse.org_modeling_m2t_xpand_updates_releases_helios/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_tmf_updates/enabled=false +repositories/http\:__download.eclipse.org_modeling_tmf_updates/isSystem=false +repositories/http\:__download.eclipse.org_modeling_tmf_updates/uri=http\://download.eclipse.org/modeling/tmf/updates/ +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates/enabled=false +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates/isSystem=false +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates/uri=http\://download.eclipse.org/modeling/tmf/xtext/updates/ +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_composite_releases/count=1 +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_composite_releases/description= +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_composite_releases/enabled=true +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_composite_releases/name=Xtext All In One (Releases) +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_composite_releases/nickname=Xtext All In One - Releases +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_composite_releases/provider= +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_composite_releases/suffix=compositeContent.xml +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_composite_releases/type=org.eclipse.equinox.internal.p2.metadata.repository.CompositeMetadataRepository +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_composite_releases/uri=http\://download.eclipse.org/modeling/tmf/xtext/updates/composite/releases/ +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_composite_releases/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases/description= +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases/enabled=false +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases/isSystem=true +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases/name=TMF Xtext Update Site (Releases) +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases/provider= +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases/suffix=compositeContent.xml +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases/type=org.eclipse.equinox.internal.p2.metadata.repository.CompositeMetadataRepository +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases/uri=http\://download.eclipse.org/modeling/tmf/xtext/updates/releases +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201108020636/enabled=false +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201108020636/isSystem=true +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201108020636/name=Xtext Update Site +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201108020636/suffix=content.xml +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201108020636/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201108020636/uri=http\://download.eclipse.org/modeling/tmf/xtext/updates/releases/head/R201108020636 +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201108020636/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201112130541/enabled=false +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201112130541/isSystem=true +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201112130541/name=Xtext Update Site +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201112130541/suffix=content.xml +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201112130541/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201112130541/uri=http\://download.eclipse.org/modeling/tmf/xtext/updates/releases/head/R201112130541 +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201112130541/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201206120633/enabled=false +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201206120633/isSystem=true +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201206120633/name=Xtext Update Site +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201206120633/suffix=content.xml +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201206120633/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201206120633/uri=http\://download.eclipse.org/modeling/tmf/xtext/updates/releases/head/R201206120633 +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_head_R201206120633/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_helios_R201102150722/enabled=false +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_helios_R201102150722/isSystem=true +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_helios_R201102150722/name=Xtext Update Site +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_helios_R201102150722/suffix=content.xml +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_helios_R201102150722/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_helios_R201102150722/uri=http\://download.eclipse.org/modeling/tmf/xtext/updates/releases/helios/R201102150722 +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_helios_R201102150722/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201111141332/enabled=false +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201111141332/isSystem=true +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201111141332/name=Xtext Update Site +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201111141332/suffix=content.xml +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201111141332/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201111141332/uri=http\://download.eclipse.org/modeling/tmf/xtext/updates/releases/maintenance/R201111141332 +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201111141332/version=1.0.0 +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201208210947/enabled=false +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201208210947/isSystem=true +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201208210947/name=Xtext Update Site +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201208210947/suffix=content.xml +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201208210947/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201208210947/uri=http\://download.eclipse.org/modeling/tmf/xtext/updates/releases/maintenance/R201208210947/ +repositories/http\:__download.eclipse.org_modeling_tmf_xtext_updates_releases_maintenance_R201208210947/version=1.0.0 +repositories/http\:__download.eclipse.org_mylyn_releases_3.8/enabled=false +repositories/http\:__download.eclipse.org_mylyn_releases_3.8/isSystem=false +repositories/http\:__download.eclipse.org_mylyn_releases_3.8/uri=http\://download.eclipse.org/mylyn/releases/3.8 +repositories/http\:__download.eclipse.org_mylyn_releases_juno/enabled=false +repositories/http\:__download.eclipse.org_mylyn_releases_juno/isSystem=false +repositories/http\:__download.eclipse.org_mylyn_releases_juno/uri=http\://download.eclipse.org/mylyn/releases/juno/ +repositories/http\:__download.eclipse.org_releases_juno/enabled=false +repositories/http\:__download.eclipse.org_releases_juno/isSystem=false +repositories/http\:__download.eclipse.org_releases_juno/uri=http\://download.eclipse.org/releases/juno/ +repositories/http\:__download.eclipse.org_releases_juno_201302220900/enabled=true +repositories/http\:__download.eclipse.org_releases_juno_201302220900/isSystem=false +repositories/http\:__download.eclipse.org_releases_juno_201302220900/name=Juno +repositories/http\:__download.eclipse.org_releases_juno_201302220900/nickname=Juno +repositories/http\:__download.eclipse.org_releases_juno_201302220900/suffix=content.xml +repositories/http\:__download.eclipse.org_releases_juno_201302220900/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_releases_juno_201302220900/uri=http\://download.eclipse.org/releases/juno/201302220900 +repositories/http\:__download.eclipse.org_releases_juno_201302220900/version=1.0.0 +repositories/http\:__download.eclipse.org_releases_kepler/description= +repositories/http\:__download.eclipse.org_releases_kepler/enabled=true +repositories/http\:__download.eclipse.org_releases_kepler/isSystem=false +repositories/http\:__download.eclipse.org_releases_kepler/name=Eclipse Kepler repository +repositories/http\:__download.eclipse.org_releases_kepler/nickname=Eclipse Kepler repository +repositories/http\:__download.eclipse.org_releases_kepler/provider= +repositories/http\:__download.eclipse.org_releases_kepler/suffix=compositeContent.xml +repositories/http\:__download.eclipse.org_releases_kepler/type=org.eclipse.equinox.internal.p2.metadata.repository.CompositeMetadataRepository +repositories/http\:__download.eclipse.org_releases_kepler/uri=http\://download.eclipse.org/releases/kepler +repositories/http\:__download.eclipse.org_releases_kepler/version=1.0.0 +repositories/http\:__download.eclipse.org_releases_kepler_201212210900/enabled=true +repositories/http\:__download.eclipse.org_releases_kepler_201212210900/isSystem=false +repositories/http\:__download.eclipse.org_releases_kepler_201212210900/name=Kepler +repositories/http\:__download.eclipse.org_releases_kepler_201212210900/suffix=content.xml +repositories/http\:__download.eclipse.org_releases_kepler_201212210900/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_releases_kepler_201212210900/uri=http\://download.eclipse.org/releases/kepler/201212210900 +repositories/http\:__download.eclipse.org_releases_kepler_201212210900/version=1.0.0 +repositories/http\:__download.eclipse.org_releases_kepler_201302080900/enabled=false +repositories/http\:__download.eclipse.org_releases_kepler_201302080900/isSystem=true +repositories/http\:__download.eclipse.org_releases_kepler_201302080900/name=Kepler +repositories/http\:__download.eclipse.org_releases_kepler_201302080900/suffix=content.xml +repositories/http\:__download.eclipse.org_releases_kepler_201302080900/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_releases_kepler_201302080900/uri=http\://download.eclipse.org/releases/kepler/201302080900 +repositories/http\:__download.eclipse.org_releases_kepler_201302080900/version=1.0.0 +repositories/http\:__download.eclipse.org_technology_epp_packages_kepler/enabled=false +repositories/http\:__download.eclipse.org_technology_epp_packages_kepler/isSystem=true +repositories/http\:__download.eclipse.org_technology_epp_packages_kepler/name=Feature +repositories/http\:__download.eclipse.org_technology_epp_packages_kepler/suffix=content.xml +repositories/http\:__download.eclipse.org_technology_epp_packages_kepler/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_technology_epp_packages_kepler/uri=http\://download.eclipse.org/technology/epp/packages/kepler/ +repositories/http\:__download.eclipse.org_technology_epp_packages_kepler/version=1.0.0 +repositories/http\:__download.eclipse.org_technology_subversive_1.0_update-site/enabled=true +repositories/http\:__download.eclipse.org_technology_subversive_1.0_update-site/isSystem=false +repositories/http\:__download.eclipse.org_technology_subversive_1.0_update-site/name=Subversive Site +repositories/http\:__download.eclipse.org_technology_subversive_1.0_update-site/suffix=content.xml +repositories/http\:__download.eclipse.org_technology_subversive_1.0_update-site/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_technology_subversive_1.0_update-site/uri=http\://download.eclipse.org/technology/subversive/1.0/update-site/ +repositories/http\:__download.eclipse.org_technology_subversive_1.0_update-site/version=1.0.0 +repositories/http\:__download.eclipse.org_tools_gef_updates_releases/enabled=true +repositories/http\:__download.eclipse.org_tools_gef_updates_releases/isSystem=false +repositories/http\:__download.eclipse.org_tools_gef_updates_releases/name=org.eclipse.gef.repository +repositories/http\:__download.eclipse.org_tools_gef_updates_releases/suffix=content.xml +repositories/http\:__download.eclipse.org_tools_gef_updates_releases/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.eclipse.org_tools_gef_updates_releases/uri=http\://download.eclipse.org/tools/gef/updates/releases +repositories/http\:__download.eclipse.org_tools_gef_updates_releases/version=1.0.0 +repositories/http\:__download.eclipse.org_webtools_repository_juno/enabled=false +repositories/http\:__download.eclipse.org_webtools_repository_juno/isSystem=false +repositories/http\:__download.eclipse.org_webtools_repository_juno/uri=http\://download.eclipse.org/webtools/repository/juno +repositories/http\:__download.itemis.com_updates/description= +repositories/http\:__download.itemis.com_updates/enabled=true +repositories/http\:__download.itemis.com_updates/isSystem=false +repositories/http\:__download.itemis.com_updates/name=Xtext Composite Update Site +repositories/http\:__download.itemis.com_updates/nickname=Xtext Composite Update Site +repositories/http\:__download.itemis.com_updates/provider= +repositories/http\:__download.itemis.com_updates/suffix=compositeContent.xml +repositories/http\:__download.itemis.com_updates/type=org.eclipse.equinox.internal.p2.metadata.repository.CompositeMetadataRepository +repositories/http\:__download.itemis.com_updates/uri=http\://download.itemis.com/updates/ +repositories/http\:__download.itemis.com_updates/version=1.0.0 +repositories/http\:__download.itemis.com_updates_releases/description= +repositories/http\:__download.itemis.com_updates_releases/enabled=false +repositories/http\:__download.itemis.com_updates_releases/isSystem=true +repositories/http\:__download.itemis.com_updates_releases/name=Xtext Composite Update Site (Releases) +repositories/http\:__download.itemis.com_updates_releases/provider= +repositories/http\:__download.itemis.com_updates_releases/suffix=compositeContent.xml +repositories/http\:__download.itemis.com_updates_releases/type=org.eclipse.equinox.internal.p2.metadata.repository.CompositeMetadataRepository +repositories/http\:__download.itemis.com_updates_releases/uri=http\://download.itemis.com/updates/releases +repositories/http\:__download.itemis.com_updates_releases/version=1.0.0 +repositories/http\:__download.itemis.com_updates_releases_2.0.0/enabled=false +repositories/http\:__download.itemis.com_updates_releases_2.0.0/isSystem=true +repositories/http\:__download.itemis.com_updates_releases_2.0.0/name=Xtext Antlr Build Feature +repositories/http\:__download.itemis.com_updates_releases_2.0.0/suffix=content.xml +repositories/http\:__download.itemis.com_updates_releases_2.0.0/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.itemis.com_updates_releases_2.0.0/uri=http\://download.itemis.com/updates/releases/2.0.0 +repositories/http\:__download.itemis.com_updates_releases_2.0.0/version=1.0.0 +repositories/http\:__download.itemis.de_updates/description= +repositories/http\:__download.itemis.de_updates/enabled=true +repositories/http\:__download.itemis.de_updates/isSystem=false +repositories/http\:__download.itemis.de_updates/name=Xtext Composite Update Site +repositories/http\:__download.itemis.de_updates/provider= +repositories/http\:__download.itemis.de_updates/suffix=compositeContent.xml +repositories/http\:__download.itemis.de_updates/type=org.eclipse.equinox.internal.p2.metadata.repository.CompositeMetadataRepository +repositories/http\:__download.itemis.de_updates/uri=http\://download.itemis.de/updates/ +repositories/http\:__download.itemis.de_updates/version=1.0.0 +repositories/http\:__download.itemis.de_updates_releases/description= +repositories/http\:__download.itemis.de_updates_releases/enabled=false +repositories/http\:__download.itemis.de_updates_releases/isSystem=true +repositories/http\:__download.itemis.de_updates_releases/name=Xtext Composite Update Site (Releases) +repositories/http\:__download.itemis.de_updates_releases/provider= +repositories/http\:__download.itemis.de_updates_releases/suffix=compositeContent.xml +repositories/http\:__download.itemis.de_updates_releases/type=org.eclipse.equinox.internal.p2.metadata.repository.CompositeMetadataRepository +repositories/http\:__download.itemis.de_updates_releases/uri=http\://download.itemis.de/updates/releases +repositories/http\:__download.itemis.de_updates_releases/version=1.0.0 +repositories/http\:__download.itemis.de_updates_releases_2.0.0/enabled=false +repositories/http\:__download.itemis.de_updates_releases_2.0.0/isSystem=true +repositories/http\:__download.itemis.de_updates_releases_2.0.0/name=Xtext Antlr Build Feature +repositories/http\:__download.itemis.de_updates_releases_2.0.0/suffix=content.xml +repositories/http\:__download.itemis.de_updates_releases_2.0.0/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__download.itemis.de_updates_releases_2.0.0/uri=http\://download.itemis.de/updates/releases/2.0.0 +repositories/http\:__download.itemis.de_updates_releases_2.0.0/version=1.0.0 +repositories/http\:__download.jboss.org_jbosstools_updates_m2eclipse-wtp/enabled=false +repositories/http\:__download.jboss.org_jbosstools_updates_m2eclipse-wtp/isSystem=false +repositories/http\:__download.jboss.org_jbosstools_updates_m2eclipse-wtp/uri=http\://download.jboss.org/jbosstools/updates/m2eclipse-wtp/ +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-mavenarchiver_0.15.0_N_0.15.0.201207090125/enabled=true +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-mavenarchiver_0.15.0_N_0.15.0.201207090125/isSystem=false +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-mavenarchiver_0.15.0_N_0.15.0.201207090125/name=M2E Maven Archiver Connector +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-mavenarchiver_0.15.0_N_0.15.0.201207090125/suffix=content.xml +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-mavenarchiver_0.15.0_N_0.15.0.201207090125/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-mavenarchiver_0.15.0_N_0.15.0.201207090125/uri=http\://repo1.maven.org/maven2/.m2e/connectors/m2eclipse-mavenarchiver/0.15.0/N/0.15.0.201207090125/ +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-mavenarchiver_0.15.0_N_0.15.0.201207090125/version=1.0.0 +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-plexus_0.15.0_N_0.15.0.201207090126/enabled=true +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-plexus_0.15.0_N_0.15.0.201207090126/isSystem=false +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-plexus_0.15.0_N_0.15.0.201207090126/name=M2E Plexus Annotations Connector +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-plexus_0.15.0_N_0.15.0.201207090126/suffix=content.xml +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-plexus_0.15.0_N_0.15.0.201207090126/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-plexus_0.15.0_N_0.15.0.201207090126/uri=http\://repo1.maven.org/maven2/.m2e/connectors/m2eclipse-plexus/0.15.0/N/0.15.0.201207090126/ +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-plexus_0.15.0_N_0.15.0.201207090126/version=1.0.0 +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-tycho_0.6.0_N_0.6.0.201207302152/enabled=true +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-tycho_0.6.0_N_0.6.0.201207302152/isSystem=false +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-tycho_0.6.0_N_0.6.0.201207302152/name=org.sonatype.tycho.update +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-tycho_0.6.0_N_0.6.0.201207302152/suffix=content.xml +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-tycho_0.6.0_N_0.6.0.201207302152/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-tycho_0.6.0_N_0.6.0.201207302152/uri=http\://repo1.maven.org/maven2/.m2e/connectors/m2eclipse-tycho/0.6.0/N/0.6.0.201207302152/ +repositories/http\:__repo1.maven.org_maven2_.m2e_connectors_m2eclipse-tycho_0.6.0_N_0.6.0.201207302152/version=1.0.0 +repositories/http\:__update.eclemma.org/enabled=true +repositories/http\:__update.eclemma.org/isSystem=false +repositories/http\:__update.eclemma.org/name=EclEmma +repositories/http\:__update.eclemma.org/nickname=EclEmma +repositories/http\:__update.eclemma.org/suffix=content.xml +repositories/http\:__update.eclemma.org/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__update.eclemma.org/uri=http\://update.eclemma.org +repositories/http\:__update.eclemma.org/version=1.0.0 +repositories/http\:__www.eclipse.org_modeling_updates/enabled=false +repositories/http\:__www.eclipse.org_modeling_updates/isSystem=false +repositories/http\:__www.eclipse.org_modeling_updates/uri=http\://www.eclipse.org/modeling/updates/ +repositories/http\:__www.stateofflow.com_UpdateSite/enabled=true +repositories/http\:__www.stateofflow.com_UpdateSite/isSystem=false +repositories/http\:__www.stateofflow.com_UpdateSite/name=Update Site +repositories/http\:__www.stateofflow.com_UpdateSite/nickname=Update Site +repositories/http\:__www.stateofflow.com_UpdateSite/suffix=content.xml +repositories/http\:__www.stateofflow.com_UpdateSite/type=org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository +repositories/http\:__www.stateofflow.com_UpdateSite/uri=http\://www.stateofflow.com/UpdateSite/ +repositories/http\:__www.stateofflow.com_UpdateSite/version=1.0.0 diff --git a/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/sharedWithoutBaseAvailable/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.lock b/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/sharedWithoutBaseAvailable/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.lock new file mode 100644 index 000000000..e69de29bb diff --git a/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/sharedWithoutBaseAvailable/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/1362004752003.profile.gz b/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/sharedWithoutBaseAvailable/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/1362004752003.profile.gz new file mode 100644 index 000000000..dafcbd673 Binary files /dev/null and b/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/sharedWithoutBaseAvailable/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/1362004752003.profile.gz differ diff --git a/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/tooManyProfiles/p2/org.eclipse.equinox.p2.engine/profileRegistry/OtherProfile.profile/.lock b/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/tooManyProfiles/p2/org.eclipse.equinox.p2.engine/profileRegistry/OtherProfile.profile/.lock new file mode 100644 index 000000000..e69de29bb diff --git a/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/tooManyProfiles/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.lock b/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/tooManyProfiles/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/.lock new file mode 100644 index 000000000..e69de29bb diff --git a/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/tooManyProfiles/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/empty.txt b/bundles/org.eclipse.equinox.p2.tests/testData/configAreaToAgent/tooManyProfiles/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile/empty.txt new file mode 100644 index 000000000..e69de29bb diff --git a/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/META-INF/MANIFEST.MF index 4c1eeb327..29813e59d 100644 --- a/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/META-INF/MANIFEST.MF +++ b/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/META-INF/MANIFEST.MF @@ -6,7 +6,11 @@ Bundle-Version: 2.1.200.qualifier Bundle-Activator: org.eclipse.equinox.internal.p2.touchpoint.eclipse.Activator Bundle-Vendor: %providerName Bundle-Localization: plugin -Export-Package: org.eclipse.equinox.internal.p2.touchpoint.eclipse;version="2.0.0";x-friends:="org.eclipse.equinox.p2.reconciler.dropins,org.eclipse.equinox.p2.extensionlocation", +Export-Package: org.eclipse.equinox.internal.p2.touchpoint.eclipse;version="2.0.0"; + x-friends:="org.eclipse.equinox.p2.reconciler.dropins, + org.eclipse.equinox.p2.extensionlocation, + org.eclipse.equinox.p2.ui.importexport, + org.eclipse.equinox.p2.ui.sdk.scheduler", org.eclipse.equinox.internal.p2.touchpoint.eclipse.actions;version="2.0.0";x-internal:=true, org.eclipse.equinox.internal.p2.update;version="2.0.0";x-friends:="org.eclipse.equinox.p2.reconciler.dropins,org.eclipse.equinox.p2.extensionlocation,org.eclipse.equinox.p2.directorywatcher", org.eclipse.equinox.p2.touchpoint.eclipse.query;version="2.0.0" diff --git a/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/AgentFromInstall.java b/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/AgentFromInstall.java new file mode 100644 index 000000000..917808718 --- /dev/null +++ b/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/AgentFromInstall.java @@ -0,0 +1,139 @@ +/******************************************************************************* + * Copyright (c) 2013 Ericsson AB and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Ericsson AB - initial API and implementation + *******************************************************************************/ +package org.eclipse.equinox.internal.p2.touchpoint.eclipse; + +import java.io.*; +import java.net.URISyntaxException; +import org.eclipse.core.runtime.URIUtil; +import org.eclipse.equinox.internal.p2.engine.SimpleProfileRegistry; +import org.eclipse.equinox.internal.provisional.frameworkadmin.*; +import org.eclipse.equinox.p2.core.*; + +/** + * Given an eclipse installation folder and / or an eclipse configuration folder, + * this class creates the agent representing the system point at. + */ +public class AgentFromInstall { + //Input + private File configurationFolder; + private File installFolder; + private IProvisioningAgentProvider agentProvider; + + //Figured out + private String profileId; + private String p2DataAreaURI; + private String userSpecifiedProfileId; + + private AgentFromInstall(IProvisioningAgentProvider agentProvider, File installFolder, File configurationFolder, String profileId) { + this.installFolder = installFolder; + this.configurationFolder = configurationFolder; + this.agentProvider = agentProvider; + this.userSpecifiedProfileId = profileId; + } + + /** + * Creates an agent deriving the p2 data area from the information contained in the installFolder or the configurationFolder. + * In the returned agent, the services will be initialized such that the SELF variable is bound to the default profile referred to in the configuration files. + * + * @param agentProvider an instance of an agent provider from which the agent will be created. + * @param installFolder null or a file referring to the installation folder of eclipse. + * @param configurationFolder null or a file referring to the configuration folder of eclipse. + * @param profileId null or the name of the expected profile. This value is used when the detection of the profile id from the configuration file does not succeed. + */ + static public IProvisioningAgent createAgentFrom(IProvisioningAgentProvider agentProvider, File installFolder, File configurationFolder, String profileId) { + AgentFromInstall newInstance = new AgentFromInstall(agentProvider, installFolder, configurationFolder, profileId); + return newInstance.loadAgent(); + } + + private IProvisioningAgent loadAgent() { + if (installFolder != null) { + if (!installFolder.exists()) + return null; + initializeFromConfigFiles(); + } else { + initializeByGuessing(); + } + if (profileId == null) + profileId = userSpecifiedProfileId; + + if (profileId == null || p2DataAreaURI == null) { + return null; + } + return createAgent(); + } + + public IProvisioningAgent createAgent() { + IProvisioningAgent agent = null; + try { + agent = agentProvider.createAgent(URIUtil.fromString(p2DataAreaURI)); + } catch (ProvisionException e) { + //Can't happen + } catch (URISyntaxException e) { + //Can't happen since we are always constructing the string from code that manipulate files (included the code in the Manipulator) + } + agent.registerService("FORCED_SELF", profileId); + return agent; + } + + private boolean initializeFromConfigFiles() { + FrameworkAdmin fwk = LazyManipulator.getFrameworkAdmin(); + if (fwk == null) + return false; + Manipulator manipulator = fwk.getManipulator(); + LauncherData launcherData = manipulator.getLauncherData(); + launcherData.setFwConfigLocation(configurationFolder != null ? configurationFolder : new File(installFolder, "configuration/config.ini")); //$NON-NLS-1$ + launcherData.setHome(installFolder); + try { + manipulator.load(); + } catch (IllegalStateException e) { + return false; + } catch (FrameworkAdminRuntimeException e) { + return false; + } catch (IOException e) { + return false; + } + profileId = manipulator.getConfigData().getProperty("eclipse.p2.profile"); //$NON-NLS-1$ + p2DataAreaURI = manipulator.getConfigData().getProperty("eclipse.p2.data.area"); //$NON-NLS-1$ + return true; + } + + private void initializeByGuessing() { + File p2Folder = new File(configurationFolder, "p2"); //$NON-NLS-1$ + if (!p2Folder.exists()) { + p2Folder = new File(configurationFolder.getParentFile(), "p2"); //$NON-NLS-1$ + if (!p2Folder.exists()) + return; + } + p2DataAreaURI = p2Folder.toURI().toASCIIString(); + if (profileId == null) { + profileId = findProfile(getProfileRegistryFolder(p2Folder)); + } + } + + private File getProfileRegistryFolder(File p2Folder) { + return new File(p2Folder, "org.eclipse.equinox.p2.engine/profileRegistry/"); //$NON-NLS-1$ + } + + private String findProfile(File profileDirectory) { + final String PROFILE_EXT = ".profile"; //$NON-NLS-1$ + File[] profileDirectories = profileDirectory.listFiles(new FileFilter() { + public boolean accept(File pathname) { + return pathname.getName().endsWith(PROFILE_EXT) && pathname.isDirectory(); + } + }); + if (profileDirectories.length == 1) { + String directoryName = profileDirectories[0].getName(); + return SimpleProfileRegistry.unescape(directoryName.substring(0, directoryName.lastIndexOf(PROFILE_EXT))); + } + + return null; + } +} diff --git a/bundles/org.eclipse.equinox.p2.ui.sdk.scheduler/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.p2.ui.sdk.scheduler/META-INF/MANIFEST.MF index e4498d102..01351065d 100644 --- a/bundles/org.eclipse.equinox.p2.ui.sdk.scheduler/META-INF/MANIFEST.MF +++ b/bundles/org.eclipse.equinox.p2.ui.sdk.scheduler/META-INF/MANIFEST.MF @@ -22,6 +22,7 @@ Import-Package: com.ibm.icu.util;version="4.0.1", org.eclipse.equinox.internal.p2.engine.phases, org.eclipse.equinox.internal.p2.garbagecollector, org.eclipse.equinox.internal.p2.metadata.query, + org.eclipse.equinox.internal.p2.touchpoint.eclipse;version="2.0.0", org.eclipse.equinox.internal.p2.ui, org.eclipse.equinox.internal.p2.ui.actions, org.eclipse.equinox.internal.p2.ui.query, diff --git a/bundles/org.eclipse.equinox.p2.ui.sdk.scheduler/src/org/eclipse/equinox/internal/p2/ui/sdk/scheduler/AutomaticUpdateScheduler.java b/bundles/org.eclipse.equinox.p2.ui.sdk.scheduler/src/org/eclipse/equinox/internal/p2/ui/sdk/scheduler/AutomaticUpdateScheduler.java index 67b5c98e8..330b2252b 100644 --- a/bundles/org.eclipse.equinox.p2.ui.sdk.scheduler/src/org/eclipse/equinox/internal/p2/ui/sdk/scheduler/AutomaticUpdateScheduler.java +++ b/bundles/org.eclipse.equinox.p2.ui.sdk.scheduler/src/org/eclipse/equinox/internal/p2/ui/sdk/scheduler/AutomaticUpdateScheduler.java @@ -15,6 +15,7 @@ package org.eclipse.equinox.internal.p2.ui.sdk.scheduler; import com.ibm.icu.util.Calendar; import com.ibm.icu.util.ULocale; import java.io.File; +import java.net.URI; import java.util.Iterator; import java.util.Set; import org.eclipse.core.runtime.*; @@ -32,6 +33,8 @@ import org.eclipse.equinox.p2.engine.query.UserVisibleRootQuery; import org.eclipse.equinox.p2.metadata.IInstallableUnit; import org.eclipse.equinox.p2.query.IQuery; import org.eclipse.equinox.p2.query.QueryUtil; +import org.eclipse.equinox.p2.repository.IRepositoryManager; +import org.eclipse.equinox.p2.repository.metadata.IMetadataRepositoryManager; import org.eclipse.jface.preference.IPreferenceStore; import org.eclipse.jface.wizard.WizardDialog; import org.eclipse.osgi.service.datalocation.Location; @@ -49,6 +52,7 @@ public class AutomaticUpdateScheduler implements IStartup { private static final String ECLIPSE_P2_SKIP_MIGRATION_WIZARD = "eclipse.p2.skipMigrationWizard"; //$NON-NLS-1$ private static final String ECLIPSE_P2_SKIP_MOVED_INSTALL_DETECTION = "eclipse.p2.skipMovedInstallDetection"; //$NON-NLS-1$ + public static final String MIGRATION_DIALOG_SHOWN = "migrationDialogShown"; //$NON-NLS-1$ // values are to be picked up from the arrays DAYS and HOURS public static final String P_DAY = "day"; //$NON-NLS-1$ @@ -113,14 +117,22 @@ public class AutomaticUpdateScheduler implements IStartup { return false; IProfile previousProfile = null; + URI[] reposToMigrate = null; if (!skipFirstTimeMigration() && !configurationSpecifiedManually() && isFirstTimeRunningThisSharedInstance(agent, registry, currentProfile)) { File searchRoot = getSearchLocation(); if (searchRoot == null) return false; - previousProfile = new PreviousConfigurationFinder(getConfigurationLocation().getParentFile()).findPreviousInstalls(searchRoot, getInstallFolder()); + + IProvisioningAgent otherConfigAgent = new PreviousConfigurationFinder(getConfigurationLocation().getParentFile()).findPreviousInstalls(searchRoot, getInstallFolder()); + if (otherConfigAgent == null) { + return false; + } + previousProfile = ((IProfileRegistry) otherConfigAgent.getService(IProfileRegistry.SERVICE_NAME)).getProfile(IProfileRegistry.SELF); if (previousProfile == null) return false; + reposToMigrate = ((IMetadataRepositoryManager) otherConfigAgent.getService(IMetadataRepositoryManager.SERVICE_NAME)).getKnownRepositories(IRepositoryManager.REPOSITORIES_NON_SYSTEM); + //At this point we consider that the migration is done since we will present something to the user. registry.setProfileStateProperty(currentProfile.getProfileId(), registry.listProfileTimestamps(currentProfile.getProfileId())[0], "INITIAL", "DONE"); } @@ -143,7 +155,7 @@ public class AutomaticUpdateScheduler implements IStartup { } - //The search location is two level up from teh configuration location. + //The search location is two level up from the configuration location. private File getSearchLocation() { File parent = getConfigurationLocation().getParentFile(); if (parent == null) @@ -173,8 +185,8 @@ public class AutomaticUpdateScheduler implements IStartup { long[] history = registry.listProfileTimestamps(currentProfile.getProfileId()); boolean isInitial = IProfile.STATE_SHARED_INSTALL_VALUE_INITIAL.equals(registry.getProfileStateProperties(currentProfile.getProfileId(), history[0]).get(IProfile.STATE_PROP_SHARED_INSTALL)); if (isInitial) - return false; - return "DONE".equals(registry.getProfileStateProperties(currentProfile.getProfileId(), history[0]).get("INITIAL")); + return true; + return !"DONE".equals(registry.getProfileStateProperties(currentProfile.getProfileId(), history[0]).get("INITIAL")); } /** @@ -206,7 +218,6 @@ public class AutomaticUpdateScheduler implements IStartup { } private void openMigrationWizard(final IProfile inputProfile) { - Display d = Display.getDefault(); d.asyncExec(new Runnable() { public void run() { @@ -229,25 +240,8 @@ public class AutomaticUpdateScheduler implements IStartup { if (lastReset == null) return false; return lastShownMigration < lastReset.getTimestamp(); - - // && !remindMeLater()) - // return false; - // - // final String PREF_MIGRATION_DIALOG_SHOWN = "migrationDialogShown"; //$NON-NLS-1$ - // - // //Have we already shown the migration dialog - // if (AutomaticUpdatePlugin.getDefault().getPreferenceStore().getString(PREF_MIGRATION_DIALOG_SHOWN) == resetState) - // return false; - // - // //Remember that we are showing the migration dialog - // AutomaticUpdatePlugin.getDefault().getPreferenceStore().setValue(PREF_MIGRATION_DIALOG_SHOWN, resetState); - // AutomaticUpdatePlugin.getDefault().savePreferences(); - // - // return true; } - public static final String MIGRATION_DIALOG_SHOWN = "migrationDialogShown"; //$NON-NLS-1$ - //Get the timestamp that we migrated from private long getLastShownMigration() { return AutomaticUpdatePlugin.getDefault().getPreferenceStore().getLong(MIGRATION_DIALOG_SHOWN); diff --git a/bundles/org.eclipse.equinox.p2.ui.sdk.scheduler/src/org/eclipse/equinox/internal/p2/ui/sdk/scheduler/ConfigAreaToAgent.java b/bundles/org.eclipse.equinox.p2.ui.sdk.scheduler/src/org/eclipse/equinox/internal/p2/ui/sdk/scheduler/ConfigAreaToAgent.java deleted file mode 100644 index 071f7ae64..000000000 --- a/bundles/org.eclipse.equinox.p2.ui.sdk.scheduler/src/org/eclipse/equinox/internal/p2/ui/sdk/scheduler/ConfigAreaToAgent.java +++ /dev/null @@ -1,70 +0,0 @@ -package org.eclipse.equinox.internal.p2.ui.sdk.scheduler; - -import java.io.*; -import java.net.URI; -import java.net.URISyntaxException; -import java.util.Properties; -import org.eclipse.core.runtime.URIUtil; -import org.eclipse.equinox.p2.core.IProvisioningAgent; -import org.eclipse.equinox.p2.core.ProvisionException; -import org.eclipse.equinox.p2.engine.IProfile; -import org.eclipse.equinox.p2.engine.IProfileRegistry; - -public class ConfigAreaToAgent { - public IProfile fromConfigurationToProfile(File configurationFolder) { - //TODO dispose the agent - String toBeImportedProfileId = null; - File config = new File(configurationFolder, "configuration/config.ini"); //$NON-NLS-1$ - URI configArea = config.getParentFile().toURI(); - InputStream is = null; - // default area - File p2DataArea = new File(configurationFolder, "p2"); //$NON-NLS-1$ - try { - Properties props = new Properties(); - is = new FileInputStream(config); - props.load(is); - toBeImportedProfileId = props.getProperty("eclipse.p2.profile"); //$NON-NLS-1$ - String url = props.getProperty("eclipse.p2.data.area"); //$NON-NLS-1$ - if (url != null) { - final String CONFIG_DIR = "@config.dir/"; //$NON-NLS-1$ - final String FILE_PROTOCOL = "file:"; //$NON-NLS-1$ - if (url.startsWith(CONFIG_DIR)) - url = FILE_PROTOCOL + url.substring(CONFIG_DIR.length()); - p2DataArea = new File(URIUtil.makeAbsolute(URIUtil.fromString(new File(url.substring(FILE_PROTOCOL.length())).isAbsolute() ? url : url.substring(FILE_PROTOCOL.length())), configArea)); - } - } catch (IOException ioe) { - //ignore - } catch (URISyntaxException e) { - return null; - } finally { - try { - is.close(); - } catch (IOException ioe) { - //ignore - } - is = null; - } - if (p2DataArea.exists()) { - IProvisioningAgent agent = null; - try { - agent = AutomaticUpdatePlugin.getDefault().getAgentProvider().createAgent(p2DataArea.toURI()); - } catch (ProvisionException e) { - //Can't happen - } - IProfileRegistry registry = (IProfileRegistry) agent.getService(IProfileRegistry.SERVICE_NAME); - if (toBeImportedProfileId != null) - return registry.getProfile(toBeImportedProfileId); - - //TODO we may need to set the SELF profile on the registry to load the repos - IProfile[] allProfiles = registry.getProfiles(); - if (allProfiles.length == 1) - return allProfiles[0]; - - // IMetadataRepositoryManager metadataRepoMgr = (IMetadataRepositoryManager) agent.getService(IMetadataRepositoryManager.SERVICE_NAME); - // URI[] metadataRepos = metadataRepoMgr.getKnownRepositories(IRepositoryManager.REPOSITORIES_NON_SYSTEM); - //TODO deal with the repos - } - return null; - } - -} diff --git a/bundles/org.eclipse.equinox.p2.ui.sdk.scheduler/src/org/eclipse/equinox/internal/p2/ui/sdk/scheduler/PreviousConfigurationFinder.java b/bundles/org.eclipse.equinox.p2.ui.sdk.scheduler/src/org/eclipse/equinox/internal/p2/ui/sdk/scheduler/PreviousConfigurationFinder.java index fadfe4157..68dbf8f62 100644 --- a/bundles/org.eclipse.equinox.p2.ui.sdk.scheduler/src/org/eclipse/equinox/internal/p2/ui/sdk/scheduler/PreviousConfigurationFinder.java +++ b/bundles/org.eclipse.equinox.p2.ui.sdk.scheduler/src/org/eclipse/equinox/internal/p2/ui/sdk/scheduler/PreviousConfigurationFinder.java @@ -1,11 +1,23 @@ +/******************************************************************************* + * Copyright (c) 2013 Ericsson AB and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Ericsson AB - initial API and implementation + *******************************************************************************/ package org.eclipse.equinox.internal.p2.ui.sdk.scheduler; +import org.eclipse.equinox.internal.p2.touchpoint.eclipse.AgentFromInstall; + import java.io.*; import java.util.*; import java.util.regex.Matcher; import java.util.regex.Pattern; import org.eclipse.core.runtime.Platform; -import org.eclipse.equinox.p2.engine.IProfile; +import org.eclipse.equinox.p2.core.IProvisioningAgent; public class PreviousConfigurationFinder { @@ -130,7 +142,7 @@ public class PreviousConfigurationFinder { return new ConfigurationDescriptor(m.group(1), new Identifier(m.group(2)), m.group(3), m.group(4), candidate.getAbsoluteFile()); } - public IProfile findPreviousInstalls(File searchRoot, File installFolder) { + public IProvisioningAgent findPreviousInstalls(File searchRoot, File installFolder) { List potentialConfigurations = readPreviousConfigurations(searchRoot); ConfigurationDescriptor runningConfiguration = getConfigdataFromProductFile(installFolder); if (runningConfiguration == null) @@ -140,7 +152,7 @@ public class PreviousConfigurationFinder { match = findMostRelevantConfigurationFromProductId(potentialConfigurations, runningConfiguration); if (match == null) return null; - return new ConfigAreaToAgent().fromConfigurationToProfile(match.getConfig()); + return AgentFromInstall.createAgentFrom(AutomaticUpdatePlugin.getDefault().getAgentProvider(), null, new File(match.getConfig(), "configuration"), null); //$NON-NLS-1$ } private ConfigurationDescriptor getConfigdataFromProductFile(File installFolder) { -- cgit v1.2.3