Naming convention for upper case abbreviations [closed]

There is no one correct answer. This wiki extract is helpful: Programming identifiers often need to contain acronyms and initialisms which are already in upper case, such as “old HTML file”. By analogy with the title case rules, the natural camel case rendering would have the abbreviation all in upper case, namely “oldHTMLFile”. However, this …

Read more

What is MOJO in Maven?

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 goal, to extend functionality not already found in maven.