tags:

views:

56

answers:

2

I am using bitlyj snapshot jar to shorten URLs from the following link.

http://code.google.com/p/bitlyj/downloads/list

will somebody explain me the term snapshot.jar is snapshot.jar files are unstable or any thing wrong with these kind of jars ?

+1  A: 

Yes, those files are usually automatically created from the current development branch without any manual testing.

nhnb
+1  A: 

SNAPSHOT indicates latest code in trunk or head. On whether you should use snapshot, the answer is depends:

  • Is there a fix for a bug in the snapshot release thats not available in the stable release?
  • Is there a new feature available in snapshot, but not available in stable version

You could make a call in these cases whether to use them or not.

Here's an article for your reference. It tells you when you should use snapshots.

We generally tend to use snapshots for maven plugins (some features are available in latest snapshots).

naikus