Maven 中的 MOJO 是什么?
我现在正在阅读有关 Maven 的内容,并且在文本中到处都看到这个词(mojo)。我大概明白它的意思,但我不会拒绝好的解释。我尝试用谷歌搜索,但只找到了非专家的解释。
POJO - 好吧,但是 MOJO 呢? Maven 旧 Java 对象?
I'm reading about Maven right now and everywhere in a text I see this word (mojo). I approximately understand what it means, but I would not refuse from a good explanation. I tried to google, but found only non-maven explanations.
POJO - ok, but MOJO? Maven Old Java Object?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
是的,来自 http://maven.apache.org/plugin-developers/index.html< /a>:
什么是 Mojo? mojo 是一个 Maven 普通的旧 Java 对象。每个mojo 都是Maven 中的一个可执行目标,插件是一个或多个相关mojo 的分发版。
简而言之,mojo 是一个maven 目标,用于扩展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.
正如此处所写:
Mojo 只是与 Maven 目标相关联,因此我们可以说 Mojo 不仅仅是 Maven 中的目标。
As written here:
A Mojo simply associates with a Maven goal, so we can say a Mojo is much more than just a goal in Maven.
Maven 站点 说 Mojo 是“Maven”的组合+“POJO(普通旧式 Java 对象)”。那么,MOJO = Maven Old Java Object。
但另一个不同的答案 Maven:完整我认为参考资料来自管理 Maven 站点的同一组人员,表明 Mojo 的意思是 Magical POJO。
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.
MOJO (Maven Old Java Object) 是 Maven 中的一个目标。
在maven中,一切都是由插件完成的,一个插件有一个或多个相关的mojos ie目标。
Mojo 是 Maven 中的单个任务单元。
例如:
elicpse:eclipse
具有 eclipse 目标的 eclipse 插件是一个 MOJOMOJO (Maven Old Java Object) is a goal in Maven.
In maven, everything is done by plugin, a plugin has one or more related mojos i.e. goals.
Mojo is single unit of task in maven.
for example :
elicpse:eclipse
the eclipse plugin with eclipse goal is a MOJO