diff options
author | Markus Koivisto <markus@vaadin.com> | 2016-01-22 14:55:18 +0200 |
---|---|---|
committer | Markus Koivisto <markus@vaadin.com> | 2016-01-22 14:55:18 +0200 |
commit | 99d6de546c74f0eed230ea8253dda6b85109d2e7 (patch) | |
tree | 10fc21c557566fe3241e6e13499df18d80f8dcb2 /documentation/addons/addons-downloading.asciidoc | |
parent | 610736d9f373d4b37fd39ff8f90aabd13eab7926 (diff) | |
download | vaadin-framework-99d6de546c74f0eed230ea8253dda6b85109d2e7.tar.gz vaadin-framework-99d6de546c74f0eed230ea8253dda6b85109d2e7.zip |
Add documentation to master branch
Change-Id: I2504bb10f1ae73ec0cbc08b7ba5a88925caa1674
Diffstat (limited to 'documentation/addons/addons-downloading.asciidoc')
-rw-r--r-- | documentation/addons/addons-downloading.asciidoc | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/documentation/addons/addons-downloading.asciidoc b/documentation/addons/addons-downloading.asciidoc new file mode 100644 index 0000000000..6ccf440420 --- /dev/null +++ b/documentation/addons/addons-downloading.asciidoc @@ -0,0 +1,61 @@ +--- +title: Downloading Add-ons from Vaadin Directory +order: 2 +layout: page +--- + +[[addons.downloading]] += Downloading Add-ons from Vaadin Directory + +If you are not using Maven or a Maven-compatible dependency manager such as Ivy, +or want to manage for your libraries manually, you can download add-on packages +from the details page of an add-on in Vaadin Directory. + +. Select the version; some add-ons have several versions available. The latest is +shown by default, but you can choose another the version to download from the +dropdown menu in the header of the details page. + +. Click [guibutton]#Download Now# and save the JAR or Zip file on your computer. + +. If the add-on is packaged in a Zip package, unzip the package and follow any +instructions provided inside the package. Typically, you just need to copy a JAR +file to your web project under the [filename]#WEB-INF/lib# directory. + ++ +Note that some add-ons may require other libraries. You can resolve such +dependencies manually, but we recommend using a dependency manager such as Ivy +or Maven in your project. + +. Update and recompile your project. In Eclipse, select the project and press F5. + +. You may need to compile the client-side implementations of the add-on +components, that is, a __widget set__. This is the case for majority of add-ons, +except for pure server-side, theme, or data binding add-ons. Compiling the +widget set depends on the build environment. See <<addons.downloading.ant>>, or +later in this chapter for instructions for compiling the widget set with Eclipse +and +Maven.+ +//// +See <xref linkend="addons.compiling"/> for +instructions. +//// + +. Update the project in your development web server and possibly restart the +server. + + +[[addons.downloading.ant]] +== Compiling Widget Sets with an Ant Script + +If you need to compile the widget set with an Ant script, you can find a script +template package at the link:http://vaadin.com/download/[Vaadin download page]. +You can copy the files in the package to your project and, once configured, use +it by running Ant in the directory. + +If you are using an IDE such as Eclipse, __always__ remember to refresh the +project to synchronize it with the filesystem after compiling the widget set +outside the IDE. + + + + |