码迷,mamicode.com
首页 > 其他好文 > 详细

依赖类型dependency type在maven中的作用

时间:2016-01-27 02:09:24      阅读:351      评论:0      收藏:0      [点我收藏+]

标签:maven   dependency type   

看看下面这段pom配置

...
<dependency>
    <groupId>xxx</groupId>
    <artifactId>yyy</artifactId>
    <type>ejb</type>
</dependency>
...

这个<type>很多maven相关的资料中都未曾提及,而上网搜了一下中文资源,这些文章都把compile、runtime、test等本属于scope的概念混淆为“依赖类型”<type>的概念。而且,关于这个<type>的解释也非常少。

我也是看了Maven 3 Cookbook之后从中找到些只言片语,反推出type的作用。

看书中原文(P134. How it works...):

Adding the type of apk to the dependency allows the Maven Android plugin to find the Android package of the application.

不难看出,<type>apk</type>告诉maven使用maven android plugin来进行处理<type>为apk的依赖。从而推想<type>ejb</type>就是告诉maven使用maven ejb plugin来处理。如果想知道ejb plugin如何处理这类dependency,那就去查查ejb plugin的详细说明吧,这个plugin的说明网上有很多。


本文出自 “BitterJava” 博客,请务必保留此出处http://rickqin.blog.51cto.com/1096449/1738774

依赖类型dependency type在maven中的作用

标签:maven   dependency type   

原文地址:http://rickqin.blog.51cto.com/1096449/1738774

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!