entries = new Entry[] {
new Entry( project.getBasedir(), project.getArtifactId() ),
};
}
SvnOperationFactory operationFactory = new SvnOperationFactory();
try {
for ( Entry entry : entries ) {
if ( entry.getPath() == null ) {
entry.setPath( project.getBasedir() );
}
if ( entry.getPrefix() == null ) {
entry.setPrefix( project.getArtifactId() );
}
processEntry( operationFactory, entry );
}
} finally {
operationFactory.dispose();
}
}