Home » Archived » Buckminster » Buckminster seems to ignore component provider
Buckminster seems to ignore component provider [message #719806] |
Mon, 29 August 2011 05:05 |
Martin Taal Messages: 5468 Registered: July 2009 |
Senior Member |
|
|
Hi,
I am running a build on build.eclipse.org for Texo which fails to get a dependency. Buckminster seems to ignore a
provider. Not sure if this is caused by Buckminster or by build.eclipse.org not allowing component providers on external
websites.
This is the buckminster output:
[java] WARNING [0029] : Component request
org.junit:osgi.bundle/[4.8.2.v4_8_2_v20110321-1705,4.8.2.v4_8_2_v20110321-1705] is inconflict with request
org.junit:osgi.bundle/[3.8.2.v3_8_2_v20100427-1100,3.8.2.v3_8_2_v20100427-1100]
[java] ERROR [0005] : No suitable provider for component com.mysql.jdbc:osgi.bundle/[5.0.0,6.0.0) was found in
resourceMap
file:/opt/users/hudsonbuild/workspace/emft-texo-nightly/org.eclipse.emf/org.eclipse.emf.texo/releng/org.eclipse.emf.texo.releng.buckminster/test/texo.rmap
[java] ERROR [0005] : No suitable provider for component com.mysql.jdbc:osgi.bundle/[5.0.0,6.0.0) was found in
searchPath updates.platform
[java] ERROR [0005] : Rejecting provider
p2(http://download.eclipse.org/eclipse/updates/3.7[http://download.eclipse.org/eclipse/updates/3.7]): No component match
was found
[java] ERROR [0005] : No suitable provider for component com.mysql.jdbc:osgi.bundle/[5.0.0,6.0.0) was found in
searchPath target.platform
[java] ERROR [0005] : Rejecting provider
p2(http://download.eclipse.org/releases/indigo[http://download.eclipse.org/releases/indigo]): No component match was found
[java] ERROR [0005] : Rejecting provider
p2(http://download.eclipse.org/tools/orbit/downloads/drops/R20100519200754/updateSite[http://download.eclipse.org/tools/orbit/downloads/drops/R20100519200754/updateSite]):
No component match was found
The target.platform however has three entries, the second entry (www.elver.org) seems to be ignore:
<searchPath name="target.platform">
<provider componentTypes="eclipse.feature,osgi.bundle" readerType="p2" source="false" mutable="false">
<uri format="http://download.eclipse.org/releases/indigo"/>
</provider>
<provider componentTypes="eclipse.feature,osgi.bundle" readerType="p2" source="false" mutable="false">
<uri format="http://www.elver.org/eclipse/update"/>
</provider>
<provider readerType="p2" componentTypes="osgi.bundle" mutable="false" source="false">
<uri format="http://download.eclipse.org/tools/orbit/downloads/drops/R20100519200754/updateSite"/>
</provider>
</searchPath>
--
With Regards, Martin Taal
Springsite/Elver.org
Office: Hardwareweg 4, 3821 BV Amersfoort
Postal: Nassaulaan 7, 3941 EC Doorn
The Netherlands
Cell: +31 (0)6 288 48 943
Tel: +31 (0)84 420 2397
Fax: +31 (0)84 225 9307
Mail: mtaal@springsite.com - mtaal@elver.org
Web: www.springsite.com - www.elver.org
|
|
|
Re: Buckminster seems to ignore component provider [message #719813 is a reply to message #719806] |
Mon, 29 August 2011 06:06 |
|
Hi Martin,
No providers are ignored. It's just that none of them contains the 'com.mysql.jdbc' component. My guess is that it's
because mysql is GPL'ed. You won't find any GPL'ed material in a repository at Eclipse.org. Try maven central (see topic
"getting shiro with buckminster" for an example).
- thomas
On 2011-08-29 07:05, Martin Taal wrote:
> Hi,
> I am running a build on build.eclipse.org for Texo which fails to get a dependency. Buckminster seems to ignore a
> provider. Not sure if this is caused by Buckminster or by build.eclipse.org not allowing component providers on external
> websites.
>
> This is the buckminster output:
> [java] WARNING [0029] : Component request
> org.junit:osgi.bundle/[4.8.2.v4_8_2_v20110321-1705,4.8.2.v4_8_2_v20110321-1705] is inconflict with request
> org.junit:osgi.bundle/[3.8.2.v3_8_2_v20100427-1100,3.8.2.v3_8_2_v20100427-1100]
> [java] ERROR [0005] : No suitable provider for component com.mysql.jdbc:osgi.bundle/[5.0.0,6.0.0) was found in
> resourceMap
> file:/opt/users/hudsonbuild/workspace/emft-texo-nightly/org.eclipse.emf/org.eclipse.emf.texo/releng/org.eclipse.emf.texo.releng.buckminster/test/texo.rmap
>
> [java] ERROR [0005] : No suitable provider for component com.mysql.jdbc:osgi.bundle/[5.0.0,6.0.0) was found in
> searchPath updates.platform
> [java] ERROR [0005] : Rejecting provider
> p2(http://download.eclipse.org/eclipse/updates/3.7[http://download.eclipse.org/eclipse/updates/3.7]): No component match
> was found
> [java] ERROR [0005] : No suitable provider for component com.mysql.jdbc:osgi.bundle/[5.0.0,6.0.0) was found in
> searchPath target.platform
> [java] ERROR [0005] : Rejecting provider
> p2(http://download.eclipse.org/releases/indigo[http://download.eclipse.org/releases/indigo]): No component match was found
> [java] ERROR [0005] : Rejecting provider
> p2(http://download.eclipse.org/tools/orbit/downloads/drops/R20100519200754/updateSite[http://download.eclipse.org/tools/orbit/downloads/drops/R20100519200754/updateSite]):
> No component match was found
>
> The target.platform however has three entries, the second entry (www.elver.org) seems to be ignore:
> <searchPath name="target.platform">
> <provider componentTypes="eclipse.feature,osgi.bundle" readerType="p2" source="false" mutable="false">
> <uri format="http://download.eclipse.org/releases/indigo"/>
> </provider>
> <provider componentTypes="eclipse.feature,osgi.bundle" readerType="p2" source="false" mutable="false">
> <uri format="http://www.elver.org/eclipse/update"/>
> </provider>
> <provider readerType="p2" componentTypes="osgi.bundle" mutable="false" source="false">
> <uri format="http://download.eclipse.org/tools/orbit/downloads/drops/R20100519200754/updateSite"/>
> </provider>
> </searchPath>
>
>
>
>
|
|
|
Re: Buckminster seems to ignore component provider [message #719814 is a reply to message #719813] |
Mon, 29 August 2011 06:14 |
|
Hmm, scratch that. I didn't see this provider:
<provider componentTypes="eclipse.feature,osgi.bundle" readerType="p2" source="false" mutable="false">
<uri format="http://www.elver.org/eclipse/update"/>
</provider>
And you're right. This is probably some kind of access restriction. Perhaps the legacy update site converter quietly
swallows some important info. Have you tried running in debug mode? Do you have your proxies set up?
- thomas
On 2011-08-29 08:06, Thomas Hallgren wrote:
> Hi Martin,
>
> No providers are ignored. It's just that none of them contains the 'com.mysql.jdbc' component. My guess is that it's
> because mysql is GPL'ed. You won't find any GPL'ed material in a repository at Eclipse.org. Try maven central (see topic
> "getting shiro with buckminster" for an example).
>
> - thomas
>
>
> On 2011-08-29 07:05, Martin Taal wrote:
>> Hi,
>> I am running a build on build.eclipse.org for Texo which fails to get a dependency. Buckminster seems to ignore a
>> provider. Not sure if this is caused by Buckminster or by build.eclipse.org not allowing component providers on external
>> websites.
>>
>> This is the buckminster output:
>> [java] WARNING [0029] : Component request
>> org.junit:osgi.bundle/[4.8.2.v4_8_2_v20110321-1705,4.8.2.v4_8_2_v20110321-1705] is inconflict with request
>> org.junit:osgi.bundle/[3.8.2.v3_8_2_v20100427-1100,3.8.2.v3_8_2_v20100427-1100]
>> [java] ERROR [0005] : No suitable provider for component com.mysql.jdbc:osgi.bundle/[5.0.0,6.0.0) was found in
>> resourceMap
>> file:/opt/users/hudsonbuild/workspace/emft-texo-nightly/org.eclipse.emf/org.eclipse.emf.texo/releng/org.eclipse.emf.texo.releng.buckminster/test/texo.rmap
>>
>>
>> [java] ERROR [0005] : No suitable provider for component com.mysql.jdbc:osgi.bundle/[5.0.0,6.0.0) was found in
>> searchPath updates.platform
>> [java] ERROR [0005] : Rejecting provider
>> p2(http://download.eclipse.org/eclipse/updates/3.7[http://download.eclipse.org/eclipse/updates/3.7]): No component match
>> was found
>> [java] ERROR [0005] : No suitable provider for component com.mysql.jdbc:osgi.bundle/[5.0.0,6.0.0) was found in
>> searchPath target.platform
>> [java] ERROR [0005] : Rejecting provider
>> p2(http://download.eclipse.org/releases/indigo[http://download.eclipse.org/releases/indigo]): No component match was
>> found
>> [java] ERROR [0005] : Rejecting provider
>> p2(http://download.eclipse.org/tools/orbit/downloads/drops/R20100519200754/updateSite[http://download.eclipse.org/tools/orbit/downloads/drops/R20100519200754/updateSite]):
>>
>> No component match was found
>>
>> The target.platform however has three entries, the second entry (www.elver.org) seems to be ignore:
>> <searchPath name="target.platform">
>> <provider componentTypes="eclipse.feature,osgi.bundle" readerType="p2" source="false" mutable="false">
>> <uri format="http://download.eclipse.org/releases/indigo"/>
>> </provider>
>> <provider componentTypes="eclipse.feature,osgi.bundle" readerType="p2" source="false" mutable="false">
>> <uri format="http://www.elver.org/eclipse/update"/>
>> </provider>
>> <provider readerType="p2" componentTypes="osgi.bundle" mutable="false" source="false">
>> <uri format="http://download.eclipse.org/tools/orbit/downloads/drops/R20100519200754/updateSite"/>
>> </provider>
>> </searchPath>
>>
>>
>>
>>
>
|
|
|
Re: Buckminster seems to ignore component provider [message #719852 is a reply to message #719814] |
Mon, 29 August 2011 08:14 |
Martin Taal Messages: 5468 Registered: July 2009 |
Senior Member |
|
|
I think this was an intermediate failure. Another change I did, the test launch config, I changed it from a junit launch
config to a 'junit plugin test' launch config. This did not seem to work (can not open launch config). When I moved back
to the straight junit launch config it worked fine.
Should junit plugin tests be launched differently?
This is the part of the build scripts that launched the launch config:
<buckminster command="junit" workspace="${workspacePath}">
<cmdargs>
<arg value="-l" />
<arg value="org.eclipse.emf.texo.test.all/TexoAllTests.launch" />
<arg value="-o" />
<arg value="${testResultsPath}/test-results-texo.xml" />
<arg value="--stdout" />
<arg value="${testResultsPath}/stdout.txt" />
<arg value="--stderr" />
<arg value="${testResultsPath}/stderr.txt" />
<arg value="--flatXML"/>
</cmdargs>
</buckminster>
gr. Martin
On 08/29/2011 08:14 AM, Thomas Hallgren wrote:
> Hmm, scratch that. I didn't see this provider:
>
> <provider componentTypes="eclipse.feature,osgi.bundle" readerType="p2" source="false" mutable="false">
> <uri format="http://www.elver.org/eclipse/update"/>
> </provider>
>
> And you're right. This is probably some kind of access restriction. Perhaps the legacy update site converter quietly
> swallows some important info. Have you tried running in debug mode? Do you have your proxies set up?
>
> - thomas
>
> On 2011-08-29 08:06, Thomas Hallgren wrote:
>> Hi Martin,
>>
>> No providers are ignored. It's just that none of them contains the 'com.mysql.jdbc' component. My guess is that it's
>> because mysql is GPL'ed. You won't find any GPL'ed material in a repository at Eclipse.org. Try maven central (see topic
>> "getting shiro with buckminster" for an example).
>>
>> - thomas
>>
>>
>> On 2011-08-29 07:05, Martin Taal wrote:
>>> Hi,
>>> I am running a build on build.eclipse.org for Texo which fails to get a dependency. Buckminster seems to ignore a
>>> provider. Not sure if this is caused by Buckminster or by build.eclipse.org not allowing component providers on external
>>> websites.
>>>
>>> This is the buckminster output:
>>> [java] WARNING [0029] : Component request
>>> org.junit:osgi.bundle/[4.8.2.v4_8_2_v20110321-1705,4.8.2.v4_8_2_v20110321-1705] is inconflict with request
>>> org.junit:osgi.bundle/[3.8.2.v3_8_2_v20100427-1100,3.8.2.v3_8_2_v20100427-1100]
>>> [java] ERROR [0005] : No suitable provider for component com.mysql.jdbc:osgi.bundle/[5.0.0,6.0.0) was found in
>>> resourceMap
>>> file:/opt/users/hudsonbuild/workspace/emft-texo-nightly/org.eclipse.emf/org.eclipse.emf.texo/releng/org.eclipse.emf.texo.releng.buckminster/test/texo.rmap
>>>
>>>
>>>
>>> [java] ERROR [0005] : No suitable provider for component com.mysql.jdbc:osgi.bundle/[5.0.0,6.0.0) was found in
>>> searchPath updates.platform
>>> [java] ERROR [0005] : Rejecting provider
>>> p2(http://download.eclipse.org/eclipse/updates/3.7[http://download.eclipse.org/eclipse/updates/3.7]): No component match
>>> was found
>>> [java] ERROR [0005] : No suitable provider for component com.mysql.jdbc:osgi.bundle/[5.0.0,6.0.0) was found in
>>> searchPath target.platform
>>> [java] ERROR [0005] : Rejecting provider
>>> p2(http://download.eclipse.org/releases/indigo[http://download.eclipse.org/releases/indigo]): No component match was
>>> found
>>> [java] ERROR [0005] : Rejecting provider
>>> p2(http://download.eclipse.org/tools/orbit/downloads/drops/R20100519200754/updateSite[http://download.eclipse.org/tools/orbit/downloads/drops/R20100519200754/updateSite]):
>>>
>>>
>>> No component match was found
>>>
>>> The target.platform however has three entries, the second entry (www.elver.org) seems to be ignore:
>>> <searchPath name="target.platform">
>>> <provider componentTypes="eclipse.feature,osgi.bundle" readerType="p2" source="false" mutable="false">
>>> <uri format="http://download.eclipse.org/releases/indigo"/>
>>> </provider>
>>> <provider componentTypes="eclipse.feature,osgi.bundle" readerType="p2" source="false" mutable="false">
>>> <uri format="http://www.elver.org/eclipse/update"/>
>>> </provider>
>>> <provider readerType="p2" componentTypes="osgi.bundle" mutable="false" source="false">
>>> <uri format="http://download.eclipse.org/tools/orbit/downloads/drops/R20100519200754/updateSite"/>
>>> </provider>
>>> </searchPath>
>>>
>>>
>>>
>>>
>>
>
--
With Regards, Martin Taal
Springsite/Elver.org
Office: Hardwareweg 4, 3821 BV Amersfoort
Postal: Nassaulaan 7, 3941 EC Doorn
The Netherlands
Cell: +31 (0)6 288 48 943
Tel: +31 (0)84 420 2397
Fax: +31 (0)84 225 9307
Mail: mtaal@springsite.com - mtaal@elver.org
Web: www.springsite.com - www.elver.org
|
|
|
Re: Buckminster seems to ignore component provider [message #719853 is a reply to message #719852] |
Mon, 29 August 2011 08:34 |
|
We're executing 'junit plugin test' launch configs without problems. Do you see any problems in the log? I.e. in
<workspace>/.metadata/.log?
- thomas
On 2011-08-29 10:14, Martin Taal wrote:
> I think this was an intermediate failure. Another change I did, the test launch config, I changed it from a junit launch
> config to a 'junit plugin test' launch config. This did not seem to work (can not open launch config). When I moved back
> to the straight junit launch config it worked fine.
>
> Should junit plugin tests be launched differently?
>
> This is the part of the build scripts that launched the launch config:
> <buckminster command="junit" workspace="${workspacePath}">
> <cmdargs>
> <arg value="-l" />
> <arg value="org.eclipse.emf.texo.test.all/TexoAllTests.launch" />
> <arg value="-o" />
> <arg value="${testResultsPath}/test-results-texo.xml" />
> <arg value="--stdout" />
> <arg value="${testResultsPath}/stdout.txt" />
> <arg value="--stderr" />
> <arg value="${testResultsPath}/stderr.txt" />
> <arg value="--flatXML"/>
> </cmdargs>
> </buckminster>
>
> gr. Martin
>
> On 08/29/2011 08:14 AM, Thomas Hallgren wrote:
>> Hmm, scratch that. I didn't see this provider:
>>
>> <provider componentTypes="eclipse.feature,osgi.bundle" readerType="p2" source="false" mutable="false">
>> <uri format="http://www.elver.org/eclipse/update"/>
>> </provider>
>>
>> And you're right. This is probably some kind of access restriction. Perhaps the legacy update site converter quietly
>> swallows some important info. Have you tried running in debug mode? Do you have your proxies set up?
>>
>> - thomas
>>
>> On 2011-08-29 08:06, Thomas Hallgren wrote:
>>> Hi Martin,
>>>
>>> No providers are ignored. It's just that none of them contains the 'com.mysql.jdbc' component. My guess is that it's
>>> because mysql is GPL'ed. You won't find any GPL'ed material in a repository at Eclipse.org. Try maven central (see topic
>>> "getting shiro with buckminster" for an example).
>>>
>>> - thomas
>>>
>>>
>>> On 2011-08-29 07:05, Martin Taal wrote:
>>>> Hi,
>>>> I am running a build on build.eclipse.org for Texo which fails to get a dependency. Buckminster seems to ignore a
>>>> provider. Not sure if this is caused by Buckminster or by build.eclipse.org not allowing component providers on
>>>> external
>>>> websites.
>>>>
>>>> This is the buckminster output:
>>>> [java] WARNING [0029] : Component request
>>>> org.junit:osgi.bundle/[4.8.2.v4_8_2_v20110321-1705,4.8.2.v4_8_2_v20110321-1705] is inconflict with request
>>>> org.junit:osgi.bundle/[3.8.2.v3_8_2_v20100427-1100,3.8.2.v3_8_2_v20100427-1100]
>>>> [java] ERROR [0005] : No suitable provider for component com.mysql.jdbc:osgi.bundle/[5.0.0,6.0.0) was found in
>>>> resourceMap
>>>> file:/opt/users/hudsonbuild/workspace/emft-texo-nightly/org.eclipse.emf/org.eclipse.emf.texo/releng/org.eclipse.emf.texo.releng.buckminster/test/texo.rmap
>>>>
>>>>
>>>>
>>>>
>>>> [java] ERROR [0005] : No suitable provider for component com.mysql.jdbc:osgi.bundle/[5.0.0,6.0.0) was found in
>>>> searchPath updates.platform
>>>> [java] ERROR [0005] : Rejecting provider
>>>> p2(http://download.eclipse.org/eclipse/updates/3.7[http://download.eclipse.org/eclipse/updates/3.7]): No component
>>>> match
>>>> was found
>>>> [java] ERROR [0005] : No suitable provider for component com.mysql.jdbc:osgi.bundle/[5.0.0,6.0.0) was found in
>>>> searchPath target.platform
>>>> [java] ERROR [0005] : Rejecting provider
>>>> p2(http://download.eclipse.org/releases/indigo[http://download.eclipse.org/releases/indigo]): No component match was
>>>> found
>>>> [java] ERROR [0005] : Rejecting provider
>>>> p2(http://download.eclipse.org/tools/orbit/downloads/drops/R20100519200754/updateSite[http://download.eclipse.org/tools/orbit/downloads/drops/R20100519200754/updateSite]):
>>>>
>>>>
>>>>
>>>> No component match was found
>>>>
>>>> The target.platform however has three entries, the second entry (www.elver.org) seems to be ignore:
>>>> <searchPath name="target.platform">
>>>> <provider componentTypes="eclipse.feature,osgi.bundle" readerType="p2" source="false" mutable="false">
>>>> <uri format="http://download.eclipse.org/releases/indigo"/>
>>>> </provider>
>>>> <provider componentTypes="eclipse.feature,osgi.bundle" readerType="p2" source="false" mutable="false">
>>>> <uri format="http://www.elver.org/eclipse/update"/>
>>>> </provider>
>>>> <provider readerType="p2" componentTypes="osgi.bundle" mutable="false" source="false">
>>>> <uri format="http://download.eclipse.org/tools/orbit/downloads/drops/R20100519200754/updateSite"/>
>>>> </provider>
>>>> </searchPath>
>>>>
>>>>
>>>>
>>>>
>>>
>>
>
>
|
|
|
Re: Buckminster seems to ignore component provider [message #719909 is a reply to message #719853] |
Mon, 29 August 2011 12:29 |
Martin Taal Messages: 5468 Registered: July 2009 |
Senior Member |
|
|
Yes I see unresolved dependencies, but I don't understand why they don't happen when I run 'non-plugin-mode'. The target
platform contains the correct plugins.As it works for me for now, it is not very critical.
But is there a difference in the way a normal junit is run or a junit plugin test is run? Difference in the way the
target platform is treated/used?
gr. Martin
On 08/29/2011 10:34 AM, Thomas Hallgren wrote:
> We're executing 'junit plugin test' launch configs without problems. Do you see any problems in the log? I.e. in
> <workspace>/.metadata/.log?
>
> - thomas
>
> On 2011-08-29 10:14, Martin Taal wrote:
>> I think this was an intermediate failure. Another change I did, the test launch config, I changed it from a junit launch
>> config to a 'junit plugin test' launch config. This did not seem to work (can not open launch config). When I moved back
>> to the straight junit launch config it worked fine.
>>
>> Should junit plugin tests be launched differently?
>>
>> This is the part of the build scripts that launched the launch config:
>> <buckminster command="junit" workspace="${workspacePath}">
>> <cmdargs>
>> <arg value="-l" />
>> <arg value="org.eclipse.emf.texo.test.all/TexoAllTests.launch" />
>> <arg value="-o" />
>> <arg value="${testResultsPath}/test-results-texo.xml" />
>> <arg value="--stdout" />
>> <arg value="${testResultsPath}/stdout.txt" />
>> <arg value="--stderr" />
>> <arg value="${testResultsPath}/stderr.txt" />
>> <arg value="--flatXML"/>
>> </cmdargs>
>> </buckminster>
>>
>> gr. Martin
>>
>> On 08/29/2011 08:14 AM, Thomas Hallgren wrote:
>>> Hmm, scratch that. I didn't see this provider:
>>>
>>> <provider componentTypes="eclipse.feature,osgi.bundle" readerType="p2" source="false" mutable="false">
>>> <uri format="http://www.elver.org/eclipse/update"/>
>>> </provider>
>>>
>>> And you're right. This is probably some kind of access restriction. Perhaps the legacy update site converter quietly
>>> swallows some important info. Have you tried running in debug mode? Do you have your proxies set up?
>>>
>>> - thomas
>>>
>>> On 2011-08-29 08:06, Thomas Hallgren wrote:
>>>> Hi Martin,
>>>>
>>>> No providers are ignored. It's just that none of them contains the 'com.mysql.jdbc' component. My guess is that it's
>>>> because mysql is GPL'ed. You won't find any GPL'ed material in a repository at Eclipse.org. Try maven central (see
>>>> topic
>>>> "getting shiro with buckminster" for an example).
>>>>
>>>> - thomas
>>>>
>>>>
>>>> On 2011-08-29 07:05, Martin Taal wrote:
>>>>> Hi,
>>>>> I am running a build on build.eclipse.org for Texo which fails to get a dependency. Buckminster seems to ignore a
>>>>> provider. Not sure if this is caused by Buckminster or by build.eclipse.org not allowing component providers on
>>>>> external
>>>>> websites.
>>>>>
>>>>> This is the buckminster output:
>>>>> [java] WARNING [0029] : Component request
>>>>> org.junit:osgi.bundle/[4.8.2.v4_8_2_v20110321-1705,4.8.2.v4_8_2_v20110321-1705] is inconflict with request
>>>>> org.junit:osgi.bundle/[3.8.2.v3_8_2_v20100427-1100,3.8.2.v3_8_2_v20100427-1100]
>>>>> [java] ERROR [0005] : No suitable provider for component com.mysql.jdbc:osgi.bundle/[5.0.0,6.0.0) was found in
>>>>> resourceMap
>>>>> file:/opt/users/hudsonbuild/workspace/emft-texo-nightly/org.eclipse.emf/org.eclipse.emf.texo/releng/org.eclipse.emf.texo.releng.buckminster/test/texo.rmap
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> [java] ERROR [0005] : No suitable provider for component com.mysql.jdbc:osgi.bundle/[5.0.0,6.0.0) was found in
>>>>> searchPath updates.platform
>>>>> [java] ERROR [0005] : Rejecting provider
>>>>> p2(http://download.eclipse.org/eclipse/updates/3.7[http://download.eclipse.org/eclipse/updates/3.7]): No component
>>>>> match
>>>>> was found
>>>>> [java] ERROR [0005] : No suitable provider for component com.mysql.jdbc:osgi.bundle/[5.0.0,6.0.0) was found in
>>>>> searchPath target.platform
>>>>> [java] ERROR [0005] : Rejecting provider
>>>>> p2(http://download.eclipse.org/releases/indigo[http://download.eclipse.org/releases/indigo]): No component match was
>>>>> found
>>>>> [java] ERROR [0005] : Rejecting provider
>>>>> p2(http://download.eclipse.org/tools/orbit/downloads/drops/R20100519200754/updateSite[http://download.eclipse.org/tools/orbit/downloads/drops/R20100519200754/updateSite]):
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> No component match was found
>>>>>
>>>>> The target.platform however has three entries, the second entry (www.elver.org) seems to be ignore:
>>>>> <searchPath name="target.platform">
>>>>> <provider componentTypes="eclipse.feature,osgi.bundle" readerType="p2" source="false" mutable="false">
>>>>> <uri format="http://download.eclipse.org/releases/indigo"/>
>>>>> </provider>
>>>>> <provider componentTypes="eclipse.feature,osgi.bundle" readerType="p2" source="false" mutable="false">
>>>>> <uri format="http://www.elver.org/eclipse/update"/>
>>>>> </provider>
>>>>> <provider readerType="p2" componentTypes="osgi.bundle" mutable="false" source="false">
>>>>> <uri format="http://download.eclipse.org/tools/orbit/downloads/drops/R20100519200754/updateSite"/>
>>>>> </provider>
>>>>> </searchPath>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>
>>>
>>
>>
>
--
With Regards, Martin Taal
Springsite/Elver.org
Office: Hardwareweg 4, 3821 BV Amersfoort
Postal: Nassaulaan 7, 3941 EC Doorn
The Netherlands
Cell: +31 (0)6 288 48 943
Tel: +31 (0)84 420 2397
Fax: +31 (0)84 225 9307
Mail: mtaal@springsite.com - mtaal@elver.org
Web: www.springsite.com - www.elver.org
|
|
|
Re: Buckminster seems to ignore component provider [message #719930 is a reply to message #719909] |
Mon, 29 August 2011 13:13 |
|
On 2011-08-29 14:29, Martin Taal wrote:
> Yes I see unresolved dependencies, but I don't understand why they don't happen when I run 'non-plugin-mode'. The target
> platform contains the correct plugins.As it works for me for now, it is not very critical.
> But is there a difference in the way a normal junit is run or a junit plugin test is run? Difference in the way the
> target platform is treated/used?
>
Not to my knowledge, no. The latter needs more stuff in order to run so my guess is that something cannot be resolved,
perhaps transitively. You should be able to see what's missing in the log though.
- thomas
|
|
|
Goto Forum:
Current Time: Mon Jan 13 23:29:40 GMT 2025
Powered by FUDForum. Page generated in 0.03604 seconds
|