【发布时间】:2014-12-31 02:16:01
【问题描述】:
如果你在 pom.xml 中包含一个依赖项有什么区别
<dependency>
<groupId>group.Id</groupId>
<artifactId>artifact.Id</artifactId>
<type>ejb-client</type>
<scope>runtime</scope>
</dependency>
对
<dependency>
<groupId>group.Id</groupId>
<artifactId>artifact.Id</artifactId>
<type>ejb</type>
<scope>runtime</scope>
</dependency>
【问题讨论】:
标签: maven dependencies pom.xml