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

Maybe it will be a silly question, anyway... I'm reading about Maven right now and everywhere in text in see this word (mojo).. I approximately understand what it's mean, but I would not refuse from good explanation (I tried to google, but found only not-maven-explanations)

POJO - ok, but MOJO?.. Maven Old Java Object?

share|improve this question
1  
:) As I understood - in some sense - it's just wordplay... – dnim Dec 8 '11 at 5:10

2 Answers

up vote 22 down vote accepted

Yes, from http://maven.apache.org/plugin-developers/index.html:

What is a Mojo? A mojo is a Maven plain Old Java Object. Each mojo is an executable goal in Maven, and a plugin is a distribution of one or more related mojos.

In short, a mojo is a maven plugin, to extend functionality not already found in maven.

share|improve this answer

The Maven site says Mojo is the combination of "Maven" + "POJO (Plain Old Java Object)". So then, MOJO = Maven Old Java Object.

But another, different answer at Maven: The Complete Reference which I think is from the same group of people that are managing the Maven site suggest Mojo is meant to mean Magical POJO.

share|improve this answer

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.