下载pom.xml中指定的缺少jar

时间:2014-12-07 07:00:32

标签: maven

如何下​​载 tomcat7-servlet-api.jar 我无法使用以下依赖项下载

<dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>tomcat7-servlet-api</artifactId>
        <version>3.0.0</version>
</dependency>

2 个答案:

答案 0 :(得分:0)

如果安装了tomcat,则servlet jar应该位于tomcat安装的lib目录中。虽然它可能比3.0更新。

答案 1 :(得分:0)

您无法找到您已指定的群组和工件的依赖关系。如果您已从其他项目复制了依赖项注释,请检查(并复制)该项目的pom.xml中的存储库。

作为一方而言,它似乎需要一个tomcat7,servlet 3.0 API jar,并且中央maven repo中的等价物将是

 <dependency>
     <groupId>org.apache.tomcat</groupId>
     <artifactId>tomcat-servlet-api</artifactId>
     <version>7.0.57</version>
  </dependency>