|
However, I change the code little bit in SVNManager.java as follow:
public void initRepository() {
// DAVRepositoryFactory.setup();
SVNRepositoryFactoryImpl.setup();
//credentials to authenticate into SVN
String name = "user";
String password = "pwd";
try {
//point to the root folder in the repository
// SVNURL svnUrl = SVNURL.parseURIEncoded("http://localhost/repos/");
SVNURL svnUrl = SVNURL.parseURIEncoded("svn://localhost:7088/");
//initialize the SVNRepository
theRepository = SVNRepositoryFactory.create(svnUrl); :
:
:
|