Are there any industry standard conventions for naming jar files?
+4
A:
I have been using
Informative-name-M.m.b.jar
Where:
M = major version number (changed when backward compatibility is not necessarily maintained)
m = minor version number (feature additions etc)
b = build number (for releases containing bug fixes)
Ron Tuffin
2008-09-23 06:42:25
Example: apache-ant-1.6.5.jar . Note that a hyphen is used as the word separator, not underscore.
Aleksi
2008-09-23 06:45:41
+3
A:
This is on the first page of google results
http://javahowto.blogspot.com/2006/05/java-jar-file-naming-conventions-and.html
Midhat
2008-09-23 06:45:43