Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rapicault2011-06-10 20:13:47 +0000
committerPascal Rapicault2011-06-10 20:13:47 +0000
commit184a45ad56706cdfd2d7644aba58bfb580397ab4 (patch)
tree174e9f5b005b2c6342bb654cd282a1a659cd0709 /bundles/org.eclipse.equinox.p2.extensionlocation
parente381fc43170aba9f3b88febea625584f720da046 (diff)
downloadrt.equinox.p2-184a45ad56706cdfd2d7644aba58bfb580397ab4.tar.gz
rt.equinox.p2-184a45ad56706cdfd2d7644aba58bfb580397ab4.tar.xz
rt.equinox.p2-184a45ad56706cdfd2d7644aba58bfb580397ab4.zip
Bug 348990 - ExtensionLocationMetadataRepository is attempted before composite.
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.extensionlocation')
-rw-r--r--bundles/org.eclipse.equinox.p2.extensionlocation/src/org/eclipse/equinox/internal/p2/extensionlocation/ExtensionLocationMetadataRepository.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.extensionlocation/src/org/eclipse/equinox/internal/p2/extensionlocation/ExtensionLocationMetadataRepository.java b/bundles/org.eclipse.equinox.p2.extensionlocation/src/org/eclipse/equinox/internal/p2/extensionlocation/ExtensionLocationMetadataRepository.java
index fc2a09bdd..02b39a477 100644
--- a/bundles/org.eclipse.equinox.p2.extensionlocation/src/org/eclipse/equinox/internal/p2/extensionlocation/ExtensionLocationMetadataRepository.java
+++ b/bundles/org.eclipse.equinox.p2.extensionlocation/src/org/eclipse/equinox/internal/p2/extensionlocation/ExtensionLocationMetadataRepository.java
@@ -32,7 +32,7 @@ public class ExtensionLocationMetadataRepository extends AbstractMetadataReposit
public static final String TYPE = "org.eclipse.equinox.p2.extensionlocation.metadataRepository"; //$NON-NLS-1$
public static final Integer VERSION = new Integer(1);
- public static final List<String> STANDARD_P2_REPOSITORY_FILE_NAMES = Arrays.asList("artifacts.xml", "content.xml", "compositeArtifacts.xml", "compositeContent.xml"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
+ public static final List<String> STANDARD_P2_REPOSITORY_FILE_NAMES = Arrays.asList("artifacts.jar", "content.jar", "artifacts.xml", "content.xml", "compositeArtifacts.xml", "compositeContent.xml", "compositeArtifacts.jar", "compositeContent.jar"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$ //$NON-NLS-7$ //$NON-NLS-8$
IMetadataRepository metadataRepository;
private File base;

Back to the top