Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Blocker
-
Resolution: Fixed
-
Affects Version/s: 1.0
-
Fix Version/s: 1.2
-
Component/s: maven-scm-provider-svn
-
Labels:None
-
Complexity:Intermediate
-
Number of attachments :
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 );
Hi,
I've modified the AbstractCheckOutCommand with the new parameter recursive