Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Archived » Buckminster » Import Target Platform and SVN connector failed with Bucky 3.5
Import Target Platform and SVN connector failed with Bucky 3.5 [message #637067] Thu, 04 November 2010 02:19 Go to next message
Dao Hoang is currently offline Dao HoangFriend
Messages: 12
Registered: October 2010
Junior Member

Hello,

I installed Bucky form the update site 3.5.
When I importtargetplatform from a .target file from a svn address, the message announced me that BUILD SUCCESSFUL. But when i tried to open the workspace and see that
- the target file is empty
- the name of target like a random number (i.e 128883566096.target)
- and INFO about localfile_1_0_0.dll library cannot be loaded.

Moreover, when i import a .cquery, It failed because of error
" [java] ERROR [0001] : org.eclipse.team.svn.core.operation.UnreportableException: Selected SVN connector library is not available or cannot be loaded.
[java] If you selected native JavaHL connector, please check if binaries are available or install and select pure Java Subversion connector from the plug-in connectors update site.
[java] If connectors already installed then you can change the selected one at: Window->Preferences->Team->SVN->SVN
Connector.


I check buckminster listsite . It contains
org.eclipse.buckminster.pde.headless.feature (Buckminster - PDE support for headless operation)
org.eclipse.buckminster.product (Buckminster Product)
org.eclipse.buckminster.subversive.headless.feature (Buckminster - Subversive based SVN support for headless operation)
org.eclipse.equinox.p2.director.feature (Equinox P2 Director Feature)

Please help to indicate what I am missing. Thanks!
Dao
Re: Import Target Platform and SVN connector failed with Bucky 3.5 [message #637097 is a reply to message #637067] Thu, 04 November 2010 07:35 Go to previous messageGo to next message
Henrik Lindberg is currently offline Henrik LindbergFriend
Messages: 2509
Registered: July 2009
Senior Member
Did you also install subversive itself?
- henrik
On 11/4/10 3:19 AM, Dao Hoang wrote:
> Hello,
>
> I installed Bucky form the update site 3.5.
> When I importtargetplatform from a .target file from a svn address, the
> message announced me that BUILD SUCCESSFUL. But when i tried to open the
> workspace and see that - the target file is empty
> - the name of target like a random number (i.e 128883566096.target)
> - and INFO about localfile_1_0_0.dll library cannot be loaded.
>
> Moreover, when i import a .cquery, It failed because of error " [java]
> ERROR [0001] :
> org.eclipse.team.svn.core.operation.UnreportableException: Selected SVN
> connector library is not available or cannot be loaded.
> [java] If you selected native JavaHL connector, please check if binaries
> are available or install and select pure Java Subversion connector from
> the plug-in connectors update site.
> [java] If connectors already installed then you can change the selected
> one at: Window->Preferences->Team->SVN->SVN
> Connector.
>
>
> I check buckminster listsite . It contains
> org.eclipse.buckminster.pde.headless.feature (Buckminster - PDE support
> for headless operation)
> org.eclipse.buckminster.product (Buckminster Product)
> org.eclipse.buckminster.subversive.headless.feature (Buckminster -
> Subversive based SVN support for headless operation)
> org.eclipse.equinox.p2.director.feature (Equinox P2 Director Feature)
>
> Please help to indicate what I am missing. Thanks!
> Dao
Re: Import Target Platform and SVN connector failed with Bucky 3.5 [message #637099 is a reply to message #637097] Thu, 04 November 2010 08:16 Go to previous messageGo to next message
Dao Hoang is currently offline Dao HoangFriend
Messages: 12
Registered: October 2010
Junior Member

I installed Buckminster headless and external for Subversive from
http://download.cloudsmith.com/buckminster/external-3.5/

My list site contained Subversive based SVN support.

> org.eclipse.buckminster.subversive.headless.feature Buckminster -> Subversive based SVN support for headless operation)

I switched to Buckminster for eclipse 3.6 and check out source code normally. The warning message about localfile_1_0_0.dll also was not thrown.

You meant that i need to ask Eclipse install Subversive itself?

Thanks!


Smile Smile

[Updated on: Thu, 04 November 2010 08:34]

Report message to a moderator

Re: Import Target Platform and SVN connector failed with Bucky 3.5 [message #637102 is a reply to message #637099] Thu, 04 November 2010 08:30 Go to previous messageGo to next message
Henrik Lindberg is currently offline Henrik LindbergFriend
Messages: 2509
Registered: July 2009
Senior Member
The headless connector is just a connector.
Did you follow the instructions in the documentation?

- henrik

On 11/4/10 9:16 AM, Dao Hoang wrote:
> I installed Buckminster headless and external for Subversive from
> http://download.cloudsmith.com/buckminster/external-3.5/
>
> My list site contains Subversive based SVN support.
>
>> org.eclipse.buckminster.subversive.headless.feature Buckminster ->
>> Subversive based SVN support for headless operation)
>
> I switched to Buckminster for eclipse 3.6 and check out source code
> normally. The warning message about localfile_1_0_0.dll also was not
> thrown.
> You meant that i need ask Eclipse install Subversive itself?
>
> Thanks!
Re: Import Target Platform and SVN connector failed with Bucky 3.5 [message #637114 is a reply to message #637102] Thu, 04 November 2010 09:25 Go to previous messageGo to next message
Dao Hoang is currently offline Dao HoangFriend
Messages: 12
Registered: October 2010
Junior Member

Hi,
Here is my script
<target name="setup.buckminster" depends="setup.eclipse" unless="buckminster.present">
<java jar="${eclipse.launcher}" fork="true" failonerror="true">
<arg line="-application org.eclipse.equinox.p2.director"/>
<arg line="-repository http://download.eclipse.org/tools/buckminster/headless-3.5/"/>
<arg line="-destination ${buckminster.home}"/>
<arg line="-profile Buckminster"/>
<arg line="-installIU org.eclipse.buckminster.cmdline.product,org.eclipse.buckmins ter.pde.headless.feature.feature.group "/>
<arg line="-p2.os win32"/>
<arg line="-p2.ws win32"/>
<arg line="-p2.arch x86"/>
</java>
<java jar="${eclipse.launcher}" fork="true" failonerror="true">
<arg line="-application org.eclipse.equinox.p2.director"/>
<arg line="-repository http://download.cloudsmith.com/buckminster/external-3.5/"/>
<arg line="-destination ${buckminster.home}"/>
<arg line="-profile Buckminster"/>
<arg line="-installIU org.eclipse.buckminster.subversive.headless.feature.feature. group "/>
<arg line="-p2.os win32"/>
<arg line="-p2.ws win32"/>
<arg line="-p2.arch x86"/>
</java>
</target>


I asked to install Buckminster product and additional features, then asked to install SVN Support . Are they enough?
Could you tell me what i am missing?
Thanks,


Smile Smile
Re: Import Target Platform and SVN connector failed with Bucky 3.5 [message #637127 is a reply to message #637099] Thu, 04 November 2010 09:52 Go to previous messageGo to next message
Thomas Hallgren is currently offline Thomas HallgrenFriend
Messages: 3240
Registered: July 2009
Senior Member
Hi Dao,

If everything works with 3.6 then I suggest you use that. There should be no reason not to. I wasn't aware that we had
problems with 3.5 and Subversive but if we do, the likelihood of someone spending time and resources to fix it is low.
That is, unless you want to dive in and analyze/fix the problem yourself.

Kind Regards,
Thomas Hallgren


On 11/04/2010 09:16 AM, Dao Hoang wrote:
> I installed Buckminster headless and external for Subversive from
> http://download.cloudsmith.com/buckminster/external-3.5/
>
> My list site contains Subversive based SVN support.
>
>> org.eclipse.buckminster.subversive.headless.feature Buckminster ->
>> Subversive based SVN support for headless operation)
>
> I switched to Buckminster for eclipse 3.6 and check out source code
> normally. The warning message about localfile_1_0_0.dll also was not
> thrown.
> You meant that i need ask Eclipse install Subversive itself?
>
> Thanks!
Re: Import Target Platform and SVN connector failed with Bucky 3.5 [message #637134 is a reply to message #637127] Thu, 04 November 2010 10:15 Go to previous messageGo to next message
Dao Hoang is currently offline Dao HoangFriend
Messages: 12
Registered: October 2010
Junior Member

Hi Thomas,
Thanks for your explanation.
My product based on eclipse 3.5 and have some compatible problems when changing to eclipse 3.6 to use Bucky 3.6. It takes us much time to integrate the whole product to eclipse 3.6. That's why I must use Bucky 3.5 at the moment.

I think my case is odd while none complain about this kind of issues.

Thanks ,
Regards!

Re: Import Target Platform and SVN connector failed with Bucky 3.5 [message #637160 is a reply to message #637134] Thu, 04 November 2010 12:21 Go to previous message
Thomas Hallgren is currently offline Thomas HallgrenFriend
Messages: 3240
Registered: July 2009
Senior Member
Hi Dao,

A simple solution is perhaps to try the subclipse headless support instead of subversive. I know it was more stable in
the past. If that doesn't work, then there's nothing stopping you from building a 3.5 product using Bucky 3.6.

- thomas

On 11/04/2010 11:15 AM, Dao Hoang wrote:
> Hi Thomas,
> Thanks for your explanation. My product based on eclipse 3.5 and have
> some compatible problems when changing to eclipse 3.6 to use Bucky 3.6.
> It takes us much time to integrate the whole product to eclipse 3.6.
> That's why I must use Bucky 3.5 at the moment.
>
> I think my case is odd while none complain about this kind of issues.
>
> Thanks ,
> Regards!
>
>
Previous Topic:Building under Bucky 3.6
Next Topic:Overlapping Workspace location in headless
Goto Forum:
  


Current Time: Fri Apr 19 15:01:18 GMT 2024

Powered by FUDForum. Page generated in 0.02367 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top