Docs

Documentation versions (currently viewingVaadin 8)

Vaadin 8 reached End of Life on February 21, 2022. Discover how to make your Vaadin 8 app futureproof →

Installing Add-ons in Eclipse with Ivy

If you have a project that uses Apache Ivy to resolve dependencies, they should be listed in the ivy.xml file in the project root. Vaadin Directory allows downloading add-ons from a Maven repository, which can also be accessed by Ivy.

You can also use Ivy to resolve dependencies in an Ant script.

  1. Open the add-on page in Vaadin Directory.

  2. Select the version. The latest is shown by default, but you can choose another the version from the dropdown menu in the header of the add-on details page.

  3. Click the Maven/Ivy to display the Ivy dependency declaration, as illustrated in Figure Ivy Dependency Declaration. If the add-on is available with multiple licenses, you will be prompted to select a license for the dependency.

    directory ivy dependency
    Ivy Dependency Declaration
  4. Open the ivysettings.xml in your Eclipse project either in the XML or Ivy Editor (either double-click the file or right-click it and select Open With  Ivy Editor).

    Check that the settings file has the <ibiblio> entry given in the Directory page. It should be, if the file was created by the Vaadin project wizard in Eclipse. If not, copy it there.

    <chain name="default">
      ...
      <ibiblio name="vaadin-addons"
               usepoms="true"
               m2compatible="true"
               root="https://maven.vaadin.com/vaadin-addons"/>
      ...
    </chain>

    If you get Vaadin addons from another repository, such as the local repository if you have compiled them yourself, you need to define a resolver for the repository in the settings file.

  5. Open the ivy.xml in your Eclipse project and copy the Ivy dependency to inside the dependencies element. It should be as follows:

    <dependencies>
        …​
        <dependency org="com.vaadin.addon"
                    name="vaadin-charts"
                    rev="1.0.0"/>
    </dependencies>

    You can specify either a fixed version number or a dynamic revision tag, such as latest.release. You can find more information about the dependency declarations in Ivy documentation.

    If the ivy.xml does not have a <configurations defaultconfmapping="default->default"> defined, you also need to have conf="default->default" in the dependency to resolve transient dependencies correctly.

    IvyIDE immediately resolves the dependencies when you save the file.

  6. Compile the add-on widget set by clicking the Compile Vaadin Widgetset button in the toolbar.

    widgetset compiling toolbar
    Compiling Widget Set in Eclipse

If you experience problems with Ivy, first check all the dependency parameters. IvyDE can sometimes cause unexpected problems. You can clear the Ivy dependency cache by right-clicking the project and selecting Ivy  Clean all caches. To refresh Ivy configuration, select Ivy  Refresh. To try resolving again Ivy, select Ivy  Resolve.