简体   繁体   English

Vaadin Maven Repo和Artifactory

[英]Vaadin Maven Repo and Artifactory

I developed an java web-app application with spring and vaadin, in this application, I used some addons like easyuploads and wizards-for-vaadin. 我开发了一个带有spring和vaadin的java web应用程序应用程序,在这个应用程序中,我使用了一些插件,如easyuploads和wizards-for-vaadin。 Then i added the following configuration in my pom.xml. 然后我在我的pom.xml中添加了以下配置。

<dependency>
    <groupId>org.vaadin.addon</groupId>
    <artifactId>easyuploads</artifactId>
    <version>7.0.1</version>
</dependency>

<dependency>
    <groupId>org.vaadin.addons</groupId>
    <artifactId>wizards-for-vaadin</artifactId>
    <version>1.1.0</version>
</dependency>

<!-- Add-On Repository -->
<repositories>
  <repository>
    <id>vaadin-addons</id>
    <url>http://maven.vaadin.com/vaadin-addons</url>
  </repository>
</repositories>

Now I'm installing artifactory (for the first time) like tool of repository managment and I thought to add a remote repository for the vaadin-addons. 现在我正在安装artifactory(第一次)像存储库管理工具,我想为vaadin-addons添加一个远程存储库。 But this not work: 但这不起作用:

在此输入图像描述

How can I solve it ? 我该如何解决? Is this the correct way? 这是正确的方法吗?

We found out by accident that there seems to exist a browsable Nexus repository now: http://vaadin.com/nexus/content/repositories/vaadin-addons/ 我们偶然发现现在似乎存在一个可浏览的Nexus存储库: http//vaadin.com/nexus/content/repositories/vaadin-addons/

We have successfully included it as a proxy repository in our local Nexus installation. 我们已成功将其作为代理存储库包含在我们的本地Nexus安装中。

Their repository is not browsable, that's why you get the 404 on testing. 他们的存储库不可浏览,这就是为什么你在测试中得到404。 You can disregard the error, if should resolve the artifacts just fine (assuming the coordinates are correct). 您可以忽略错误,如果应该很好地解决工件(假设坐标是正确的)。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM