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.
Artur Signell 9a9d11fb8d Fix formatting so that it is shown correctly in GitHub 7 yıl önce
.settings Update Eclipse project to Java 8 7 yıl önce
all Update copyright year to 2016 7 yıl önce
bom Include compatibility packages in bom 7 yıl önce
buildhelpers Define dependency version in the main pom file 7 yıl önce
checkstyle Ignore missing package.html in checkstyle 7 yıl önce
client Add simple data change handling for Selects 7 yıl önce
client-compiled Add Eclipse launch configurations for super dev mode 7 yıl önce
client-compiler Format the project using Neon, remove trailing whitespace 7 yıl önce
compatibility-client Add simple data change handling for Selects 7 yıl önce
compatibility-client-compiled Increase memory for compatibility-client-compiled SDM 7 yıl önce
compatibility-server Add simple data change handling for Selects 7 yıl önce
compatibility-shared Duplicate AbstractField state and connector into compatibility-client 7 yıl önce
documentation Fixed a broken comment 7 yıl önce
eclipse Remove obsolete launch files 8 yıl önce
liferay Remove the "liferay" theme 7 yıl önce
push Define dependency version in the main pom file 7 yıl önce
scripts Scripts for removing trailing whitespace 7 yıl önce
server Add simple data change handling for Selects 7 yıl önce
shared Add simple data change handling for Selects 7 yıl önce
themes Fix placeholder styling 7 yıl önce
uitest Add simple data change handling for Selects 7 yıl önce
uitest-common Format the project using Neon, remove trailing whitespace 7 yıl önce
widgets Allow multiple data change handlers in client-side data sources 7 yıl önce
.classpath Update Eclipse project to Java 8 7 yıl önce
.gitignore Update .gitignore to work better with EGit 7 yıl önce
.project Convert Eclipse project to Maven based 8 yıl önce
CONTRIBUTING.md Added contributing instructions 7 yıl önce
LICENSE Specify the license of the documentation in the LICENSE file. 8 yıl önce
README.md Fix formatting so that it is shown correctly in GitHub 7 yıl önce
build.properties Convert Eclipse project to Maven based 8 yıl önce
common.xml Run checkstyle with Maven 8 yıl önce
ivy-taskdefs.xml Use Maven to build vaadin-push 8 yıl önce
ivysettings.xml Move FieldGroup and Vaadin 7 Grid to compatibility package 7 yıl önce
pom.xml Reintroduce variables used in OSGi manifests 7 yıl önce

README.md

Vaadin Framework

Vaadin Framework allows you to build modern web apps efficiently in plain Java, without touchking low level web technologies.

For instructions about using Vaadin to develop applications, please refer to Vaadin tutorial and other documentation.

To contribute, first refer to Contributing Code for general instructions and requirements for contributing code to the Vaadin framework.

Instructions on how to set up a working environment for developing the Vaadin Framework follow below.

Building a package

The distribution files can be built by running the standard Maven goal mvn install in the project root.

Eclipse Quick Setup

  1. Run git clone https://github.com/vaadin/vaadin.git command or clone the repository your favorite Git tool. If using Windows, you might want to add these Git settings: core.autocrlf=false and core.fileMode=false.
  2. Run mvn install in the project root. Note that the first compilation takes a while to finish as maven downloads dependencies used in the projects.
  3. Start Eclipse with the workspace you would like to use. It is usually a good idea to use the parent folder of the Git repository as the workspace folder.
  4. Import the project into Eclipse as a maven project. Use File -> Import -> Maven -> Existing Maven Projects.
  5. Select the vaadin folder (where you cloned the project)
  6. Click “Finish” to complete the import of Vaadin Framework

Now the project should compile without further configuration.

Compiling the Default Widget Set and Themes

  • Compile the default widgetset by running install maven goal in vaadin-client-compiled module root. In Eclipse this is done by right clicking on vaadin-client-compiled project it and choosing Run As -> Maven Build….
  • Compile the default themes by running install maven goal in vaadin-themes module root. In Eclipse this is done by right clicking on vaadin-themes project it and choosing Run As -> Maven Build….

Set up extra workspace preferences

The following preferences need to be set to keep the project consistent. You need to do this especially to be able to contribute changes to the project.

  1. Open Window -> Preferences (Windows) or Eclipse -> Preferences (Mac)
  2. Go to General -> Workspace
    1. Set Text file encoding to UTF-8
    2. Set New text file line delimiter to Unix
  3. Go to XML -> XML Files -> Editor

    1. Ensure the settings are follows:
    • Line width: 72
    • Format comments: true
    • Join lines: true
    • Insert whitespace before closing empty end-tags: true
    • Indent-using spaces: true
    • Indentation size: 4

Running a UI test

  1. In a Project Explorer right-click vaadin-uitest
  2. Open Run As -> Maven build…
  3. Type in jetty:run-exploded into Goals and click Run
  4. Open URL http://localhost:8080/run/

Setting up IntelliJ IDEA to Develop Vaadin 7

  1. Intall and run IDEA. Ultimate Edition is better but Community Edition should also work.
  2. Ensure if Git and Maven plugins are installed, properly configured and enabled.
  3. Clone the repository, using menu VCS -> Checkout from Version Control -> Git -> Git Repository URL -> https://github.com/vaadin/vaadin.git. When the repository is cloned, do NOT open it as a project.
  4. Open cloned repository as a maven object. Use File -> Open and choose root pom.xml file
  5. Have a coffee break while IDEA is loading dependencies and indexing the project
  6. Run Maven targets clean and install using Maven Projects tool window to compile the whole project

Running a specific UI test

  1. Open Maven Projects
  2. Open vaadin-uitest -> Plugins -> jetty -> jetty:run-exploded
  3. Open URL http://localhost:8080/run/

Running a Development Server

  1. Open File -> New -> Module…
    1. Choose type Java and click Next
    2. Type in name uitest-run and set Content Root and Module File Location to <your project location>/uitest-run
    3. Click Finish
  2. Open File -> Project Structure…
    1. Choose uitest-run module
    2. Open Dependencies tab
    3. Click + -> Module Dependency -> vaadin-uitest -> OK
    4. Click + -> Library… -> New Library… -> From Maven
    5. Type in org.eclipse.jetty.aggregate:jetty-all:9.4.0.M0 and press Tab
    6. Wait a little while Idea is trying to download the library, then click OK
    7. Close Project Structure dialog by pressing OK
  3. Open Run -> Edit Configurations… then create a new configuration of type Application named DevelopmentServerLauncher
    1. Set Main class to com.vaadin.launcher.DevelopmentServerLauncher
    2. Set Single instance only checkmark
    3. Set VM options to -ea
    4. Set Use classpath options to uitest-run
    5. Set Working directory to uitest
    6. Close Run/Debug Configurations dialog by pressing OK

The run configuration is ready.