依赖性推送服务器存在于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/
那么问题是什么?
答案 0 :(得分:1)
我认为这是类型,您正在尝试下载war,如果您没有指定类型,则默认为jar,只需添加它应该解决您的问题的类型
<dependency>
<groupId>org.icefaces</groupId>
<artifactId>push-server</artifactId>
<version>1.8.1</version>
<type>war</type>
</dependency>