summaryrefslogtreecommitdiffstats
path: root/documentation/addons/addons-eclipse.asciidoc
diff options
context:
space:
mode:
authorIlia Motornyi <elmot@vaadin.com>2015-12-03 14:59:05 +0000
committerVaadin Code Review <review@vaadin.com>2015-12-03 14:59:12 +0000
commit2af72ba9636bec70046394c41744f89ce4572e35 (patch)
treeccb3dc2d2239585f8c3f79eb5f131ff61ca9ce86 /documentation/addons/addons-eclipse.asciidoc
parent8aa5fabe89f2967e966a64842a608eceaf80d08f (diff)
downloadvaadin-framework-2af72ba9636bec70046394c41744f89ce4572e35.tar.gz
vaadin-framework-2af72ba9636bec70046394c41744f89ce4572e35.zip
Revert "Merge branch 'documentation'"7.6.0.beta2
This reverts commit f6874bde3d945c8b2d1b5c17ab50e2d0f1f8ff00. Change-Id: I67ee1c30ba3e3bcc3c43a1dd2e73a822791514bf
Diffstat (limited to 'documentation/addons/addons-eclipse.asciidoc')
-rw-r--r--documentation/addons/addons-eclipse.asciidoc107
1 files changed, 0 insertions, 107 deletions
diff --git a/documentation/addons/addons-eclipse.asciidoc b/documentation/addons/addons-eclipse.asciidoc
deleted file mode 100644
index cd7508466d..0000000000
--- a/documentation/addons/addons-eclipse.asciidoc
+++ /dev/null
@@ -1,107 +0,0 @@
----
-title: Installing Add-ons in Eclipse with Ivy
-order: 3
-layout: page
----
-
-[[addons.eclipse]]
-= Installing Add-ons in Eclipse with Ivy
-
-The Vaadin Plugin for Eclipse uses Apache Ivy to resolve dependencies. The
-dependencies should be listed in the [filename]#ivy.xml# file in the project
-root. The Vaadin Directory allows dowloading add-ons from a Maven repository,
-which can be accessed also by Ivy.
-
-You can also use Ivy to resolve dependencies in an Ant script.
-
-. Open the add-on page in Vaadin Directory.
-
-. 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.
-
-. Click the [guilabel]#Maven/Ivy# to display the Ivy dependency declaration, as
-illustrated in Figure <<figure.addons.eclipse.ivybutton>>. If the add-on is
-available with multiple licenses, you will be prompted to select a license for
-the dependency.
-
-+
-[[figure.addons.eclipse.ivybutton]]
-.Ivy Dependency Declaration
-image::img/directory-ivy-dependency.png[]
-
-. Open the [filename]#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 [literal]#++<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="http://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.
-
-. Open the [filename]#ivy.xml# in your Eclipse project and copy the Ivy dependency
-to inside the [literal]#++dependencies++# element. It should be as follows:
-
-
-+
-[subs="normal"]
-----
-&lt;dependencies&gt;
- ...
- &lt;dependency org="**com.vaadin.addon**"
- name="**vaadin-charts**"
- rev="**1.0.0**"/&gt;
-&lt;/dependencies&gt;
-----
-+
-You can specify either a fixed version number or a dynamic revision tag, such as
-[literal]#++latest.release++#. You can find more information about the
-link:http://ant.apache.org/ivy/history/2.1.0/ivyfile/dependency.html[dependency
-declarations] in Ivy documentation.
-
-+
-If the [filename]#ivy.xml# does not have a [literal]#++<configurations
-defaultconfmapping="default->default">++# defined, you also need to have
-[literal]#++conf="default->default"++# in the dependency to resolve transient
-dependencies correctly.
-
-+
-IvyIDE immediately resolves the dependencies when you save the file.
-
-. Compile the add-on widget set
-////
-, as described in &lt;xref
-linkend="addons.compiling.eclipse"/&gt;.
-////
-by clicking the [guilabel]#Compile Vaadin widgets# button in the toolbar.
-
-+
-[[figure.addons.eclipse.toolbar]]
-.Compiling Widget Set in Eclipse
-image::img/widgetset-compiling-toolbar-hi.png[]
-
-
-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".
-
-
-