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-libraries.asciidoc 3.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. ---
  2. title: Vaadin Libraries
  3. order: 20
  4. layout: page
  5. ---
  6. [[getting-started.libraries]]
  7. = Vaadin Libraries
  8. Vaadin comes as a set of library JARs, of which some are optional or alternative
  9. ones, depending on whether you are developing server-side or client-side
  10. applications, whether you use add-on components, or use CSS or Sass themes.
  11. [filename]#vaadin-server-7.x.x.jar#::
  12. The main library for developing server-side Vaadin applications, as described in
  13. <<dummy/../../../framework/application/application-overview.asciidoc#application.overview,"Writing a Server-Side Web Application">>.
  14. It requires the [filename]#vaadin-shared# and the [filename]#vaadin-themes# libraries.
  15. You can use the pre-built [filename]#vaadin-client-compiled# for server-side development, unless you need add-on components or custom widgets.
  16. [filename]#vaadin-shared-7.x.x.jar#::
  17. A shared library for server-side and client-side development.
  18. It is always needed.
  19. [filename]#vaadin-client-7.x.x.jar#::
  20. The client-side Vaadin framework, including the basic GWT API and Vaadin-specific widgets and other additions.
  21. It is required when using the [filename]#vaadin-client-compiler# to compile client-side modules.
  22. It is not needed if you just use the server-side framework with the pre-compiled Client-Side Engine.
  23. You should not deploy it with a web application.
  24. [filename]#vaadin-client-compiler-7.x.x.jar#::
  25. The Vaadin Client Compiler is a Java-to-JavaScript compiler that allows building client-side modules, such as the Client-Side Engine (widget set) required for server-side applications.
  26. The compiler is needed, for example, for compiling add-on components to the application widget set, as described in <<dummy/../../../framework/addons/addons-overview.asciidoc#addons.overview,"Using Vaadin Add-ons">>.
  27. +
  28. //TODO There's a need for such section.
  29. For detailed information regarding the compiler, see
  30. <<dummy/../../../framework/clientside/clientside-compiling#clientside.compiling,"Compiling a Client-Side Module">>.
  31. Note that you should not deploy this library with a web application.
  32. [filename]#vaadin-client-compiled-7.x.x.jar#::
  33. A pre-compiled Vaadin Client-Side Engine (widget set) that includes all the basic built-in widgets in Vaadin.
  34. This library is not needed if you compile the application widget set with the Vaadin Client Compiler.
  35. [filename]#vaadin-themes-7.x.x.jar#::
  36. Vaadin built-in themes both as SCSS source files and precompiled CSS files.
  37. The library is required both for basic use with CSS themes and for compiling custom Sass themes.
  38. [filename]#vaadin-sass-compiler-1.x.x.jar#::
  39. The Vaadin Sass Compiler compiles Sass themes to CSS, as described in <<dummy/../../../framework/themes/themes-sass#themes.sass,"Syntactically Awesome
  40. Stylesheets (Sass)">>.
  41. It requires the [filename]#vaadin-themes-7.x.x.jar# library, which contains the Sass sources for the built-in themes.
  42. The library needs to be included in deployment in development mode to allow on-the-fly compilation of themes, but it is not needed in production deployment, when the themes are compiled before deployment.
  43. Some of the libraries depend on each other as well as on the dependency libraries provided in the [filename]#lib# folder of the installation package, especially the [filename]#lib/vaadin-shared-deps.jar#.
  44. The different ways to install the libraries are described in the subsequent sections.
  45. Note that the [filename]#vaadin-client-compiler# and [filename]#vaadin-client# JARs should not be deployed with the web application by including them in [filename]#WEB-INF/lib#.
  46. Some other libraries, such as [filename]#vaadin-sass-compiler#, are not needed in production deployment.