You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

getting-started-package.asciidoc 2.1KB

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