Accessing the SVN / CVS log from java Code
Hello,
We have a requirement whereby we need to access a svn / cvs server and find the no. of check-ins happening for each repository.
For example the SVN is hosted at https://svnexample.net
And there are 3 repositories on it:
https://svnexample.net/rep/project1
https://svnexample.net/rep/project2
https://svnexample.net/rep/project3
The requirement is to connect to this server and then find out the number of check-in / check-outs happening per project. We want to build a web application which does that and gives the user the data in form of graphs, etc.
How do we go about doing that? That is how do we access the server from inside the java code and get these details?
Thanks