Reputation: 2659
I am not able to build a java project with ant, and when i launch the build the process gets blocked in the updating from the svn repository:
[projectBuild] ... background task: Building workspace (Done)
sub_updateView:
[echo] Updating Engine projects from repository
I am not even able to stop the process the build process. Does anyone know how can i resolve this please ?
Upvotes: 0
Views: 55
Reputation: 2659
Finally I resolved the problem adding my SVN credentials to the svnSetting tag in my build.xml file
<svnSetting id="svn.setting" javahl="false" svnkit="true" username="${svn.username}" password="${svn.password}" />
Upvotes: 0