blob: 4dbe73595873f9f1d03669bc2fd9d8e091893254 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
---
title: Vaadin Installation Package
order: 9
layout: page
---
[[getting-started.package]]
= Vaadin Installation Package
While the recommended way to install Vaadin is to use the Eclipse plugin, one of
the other IDE plugins, or a dependency management system, such as Maven, Vaadin
is also available as a ZIP distribution package.
You can download the newest Vaadin installation package from the download page
at http://vaadin.com/download/. Please use a ZIP decompression utility available
in your operating system to extract the files from the ZIP package.
[[getting-started.package.contents]]
== Package Contents
[filename]#README.TXT#:: This Readme file gives simple instructions for installing Vaadin in your
project.
[filename]#release-notes.html#:: The Release Notes contain information about the new features in the particular
release, give upgrade instructions, describe compatibility, etc. Please open the
HTML file with a web browser.
[filename]#license.html#:: Apache License version 2.0. Please open the HTML file with a web browser.
[filename]#lib#folder:: All dependency libraries required by Vaadin are contained within the
[filename]#lib# folder.
[filename]#*.jar#:: Vaadin libraries, as described in
<<dummy/../../../framework/getting-started/getting-started-libraries#getting-started.libraries,"Overview
of Vaadin Libraries">>.
[[getting-started.package.install]]
== Installing the Libraries
You can install the Vaadin ZIP package in a few simple steps:
. Copy the JAR files at the package root folder to the [filename]#WEB-APP/lib# web
library folder in the project. Some of the libraries are optional, as explained
in
<<dummy/../../../framework/getting-started/getting-started-libraries#getting-started.libraries,"Overview
of Vaadin Libraries">>.
. Also copy the dependency JAR files at the [filename]#lib# folder to the
[filename]#WEB-APP/lib# web library folder in the project.
The location of the [filename]#WEB-APP/lib# folder depends on the project
organization, which depends on the development environment.
* In Eclipse Dynamic Web Application projects: [filename]#WebContent/WEB-INF/lib#.
* In Maven projects: [filename]#src/main/webapp/WEB-INF/lib#.
|