Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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. Then i added the following configuration in my 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. But this not work:

enter image description here

How can I solve it ? Is this the correct way?

like image 243
Skizzo Avatar asked Apr 15 '14 15:04

Skizzo


People also ask

Is Artifactory a Maven repository?

Overview. As a Maven repository, Artifactory is both a source for artifacts needed for a build, and a target to deploy artifacts generated in the build process. Maven is configured using a settings. xml file located under your Maven home directory (typically, this will be /user.

How do I deploy artifacts to Artifactory in Maven?

To deploy a single artifact, simply fill in the fields in the Deploy dialog and click "Deploy". The Deploy dialog displays the repository package type and layout configured. To deploy your package according to the configured layout, check Deploy According to Layout.

What is Artifactory repository?

JFrog Artifactory is a repository manager that supports all available software package types, enabling automated continous integration and delivery. Add Artifactory to your toolchain and store build artifacts in your Artifactory repository.


1 Answers

Their repository is not browsable, that's why you get the 404 on testing. You can disregard the error, if should resolve the artifacts just fine (assuming the coordinates are correct).

like image 91
JBaruch Avatar answered Sep 22 '22 11:09

JBaruch