vote up 2 vote down star
1

Is there a distributed version control system (like git or Mercurial) that can be used as an embedded library in Java applications (to implement versioned and synchronizable storage for application data), ideally written in pure Java and under a permissive license?

flag

54% accept rate

3 Answers

vote up 2 vote down

I do not know of any pure Java solutions. But, check out http://javagit.sourceforge.net/ you can use it to connect to a git repository with Java.

link|flag
vote up 2 vote down

@Josh Moore's reply led me to JGit, which seems to be a competitor to JavaGit. JGit is pure Java and licensed under BSD.

Some further digging unearthed HgKit, which aims to implement Mercurial in Java. It is still pre-alpha and GPLed.

link|flag
vote up 0 vote down

There is a pure Java library, SVN Kit for interacting with Subversion

link|flag
It's been a while since I've checked but I don't think Subversion supports "distributed" in the same way that Git and Mercurial do. – Aidos Oct 8 '08 at 11:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.