Maven依赖类型ejb vs jar

Chr*_*311 9 types pom.xml maven

有什么区别

    <dependency>
        <groupId>groupId</groupId>
        <artifactId>artifactId</artifactId>
        <type>ejb</type>
    </dependency>
Run Code Online (Sandbox Code Playgroud)

    <dependency>
        <groupId>groupId</groupId>
        <artifactId>artifactId</artifactId>
    </dependency>
Run Code Online (Sandbox Code Playgroud)

提示:默认类型是jar.

Chr*_*311 0

<type>ejb</type>artifactId当您的工件具有 EJB 并且您想要使用它们时,需要使用它们。如果您的模块中不需要 EJB,<type>jar</type>则可以选择。