Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SVN: '0x00400039: Collecting Resources'

I convert a static project to javascript project in Eclipse IDE.

Now some *.js file cannot be committed and throw the error below:

SVN: '0x00400039: Collecting Resources' operation finished with error: null java.lang.NullPointerException
like image 833
flowerszhong Avatar asked Sep 03 '12 01:09

flowerszhong


1 Answers

Eclipse has a java implementation of svn, it has probably a compatibility problem with the eclipse core, or with your command line svn client.

I suggest you to commit this files from command line, and then re-create your project from svn. Or backup the not commitable files, delete them from your project, do a full update-commit, copy the files back, and to an update-commit again.

Eclipse has more svn packages (a pure java implementation and a wrapper to the svn library in C), for a longterm solution I suggest you to switch to the other.

You should yet check, if the metadata format of your svn in your eclipse, and your command line svn are compatible. It changes quiet often.

like image 183
peterh Avatar answered Nov 06 '22 05:11

peterh