Details
-
Bug
-
Status: Closed
-
Blocker
-
Resolution: Fixed
-
1.0
-
None
Description
The recursive flag is not use in the SvnCheckOutCommand class.
Here is a small Java code to reproduce it.
Sample.java
String url = "scm:svn:https://svn.apache.org/repos/asf/maven/trunks"; boolean recursive = true; ScmManager scmManager = (ScmManager) lookup( ScmManager.ROLE ); ScmRepository repository = scmManager.makeScmRepository( url ); CheckOutScmResult result = scmManager.checkOut( repository, new ScmFileSet( workingDir ), recursive );