无法从icefaces或ibiblio repos下载推送服务器依赖项

时间:2011-09-20 11:59:20

标签: maven-2 maven icefaces pom.xml

依赖性推送服务器存在于icefaces和ibiblio repos

http://anonsvn.icefaces.org/repo/maven2/releases/org/icefaces/push-server/ http://mirrors.ibiblio.org/pub/mirrors/maven2/org/icefaces/push-server/

两个repos都添加到我的pom文件中

遵循此参考:

http://mvnrepository.com/artifact/org.icefaces/push-server/1.8.2

我在我的pom文件中添加了依赖项:

<dependency>
    <groupId>org.icefaces</groupId>
    <artifactId>push-server</artifactId>
    <version>1.8.1</version>
</dependency>

但是当尝试使用maven 2安装应用程序时,我总是让构建失败,并且缺少对此工件的依赖,但我可以从这里轻松下载其他工件:

http://anonsvn.icefaces.org/repo/maven2/releases/org/icefaces/

那么问题是什么?

1 个答案:

答案 0 :(得分:1)

我认为这是类型,您正在尝试下载war,如果您没有指定类型,则默认为jar,只需添加它应该解决您的问题的类型

<dependency>
  <groupId>org.icefaces</groupId>
  <artifactId>push-server</artifactId>
  <version>1.8.1</version>
  <type>war</type>
 </dependency>