そのため、SVN リポジトリの下にプロジェクト TEST を作成しました。このプロジェクト ディレクトリに SVNKit ライブラリが存在するかどうかを知りたいです。プロトコルはhttpです。
たとえば試してみた...
private String urlSviluppo = "http://myrepo/SVILUPPO";
DAVRepositoryFactory.setup();
SVNURL url = SVNURL.parseURIDecoded(urlSviluppo);
ISVNAuthenticationManager authManager = SVNWCUtil.createDefaultAuthenticationManager("user", "pwd");
DAVRepository repositorySviluppo = (DAVRepository)DAVRepositoryFactory.create(url, null);
repositorySviluppo.setAuthenticationManager(authManager);
DefaultSVNOptions options = SVNWCUtil.createDefaultOptions(true);
SVNClientManager clientManager = SVNClientManager.newInstance(options, "user", "pwd");
clientManager.createRepository(url, true);
リポジトリ/プロジェクト情報にアクセスするにはどうすればよいですか?
ありがとう