Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to release an open source java library. I thought of using my last name as package name but I find that a bit weird. I'd like to use something more neutral like 'open.libname'.

Are there any recommendations on open source java package naming?

share|improve this question

4 Answers

up vote 8 down vote accepted

As the others said, start the package name with the reversed domain name:

Register a domain such as myproject.org and then use org.myproject.mymodule.

Or, if you don't have your own domain use the sub-domain where you host the code, e.g. if you host the code on myproject.sourceforge.net, use net.sourceforge.myproject.mymodule.

share|improve this answer
net.sf is a nice short prefix, if sourceforge.net is chosen for hosting. sf.net is a domain registered by sourceforge.net. – Joachim Sauer Mar 11 '11 at 9:01
I liked your suggestion. In my case it would be a awkard 'com.google.code.mylibrary' since this is not a google official code release. Alternatives? – Gatis Mar 11 '11 at 12:33
@Gatis Did you see my suggestion of com.googlecode. in my answer? googlecode.com points to code.google.com. – Isaac Truett Mar 11 '11 at 14:10

The usual recommendation is to prefix your package with the name of a domain you own in reverse order: com.mydomain.mypackage. Since you own the domain, the chances of name collisions are reduced.

Also, a better choice for the package name is something that reflects the functionality of the package, rather than your own name. What will you use when you want to release your second (and perhaps totally unrelated) library?

share|improve this answer
You mean something like gatis.foo and gatis.bar for libraries foo and bar? – Gatis Mar 11 '11 at 12:30
Yes. If you own a domain like gatis.com, you could use package names com.gatis.foo and com.gatis.bar. Don't go overboard, but the more you can make your package names unique, the less chance of problems from name collisions. (In many cases, the choice of package name isn't really important, but that's different when distributing a library. Also, places like Android Market use the package name of the launch class to identify apps.) – Ted Hopp Mar 11 '11 at 16:52

Where are you hosting your project? When I host a project on Google Code, for example, I tend to use com.googlecode.project-name (it seems rude to use com.google.code.project-name). I don't actually know what Google thinks about this, but it follows the example of many Sourceforge.net projects. If you have a personal/corporate domain then go ahead and use that one, of course.

share|improve this answer

This may or may not be the answer you're looking for.

The common convention is to reverse your personal/company domain name and prepend it to whatever the name of the package is.

So, if your domain is "www.feel.com" and your package name is "mypackage", then your fully qualified package name would be: com.feel.mypackage

share|improve this answer
Package naming conventions are that everything is lower case. – Ted Hopp Mar 10 '11 at 19:15
@Ted thanks for the reminder, just updated. I've been away from Java for too long... – Brian Driscoll Mar 10 '11 at 19:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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