--- title: Compiling a Client-Side Module order: 4 layout: page --- [[clientside.compiling]] = Compiling a Client-Side Module A client-side module, either a Vaadin widget set or a pure client-side module, needs to be compiled to JavaScript using the Vaadin Client Compiler. Widget set compilation is most often needed when using add-ons. In that case, the widget sets from different add-ons are compiled into an _application widget set_, as described in <>. When doing client-side development, you need to compile the widget set every time you modify the client-side code. [[clientside.compiling.overview]] == Vaadin Compiler Overview The Vaadin Client Compiler compiles Java to JavaScript. It is provided as the executable [filename]#vaadin-client-compiler# JAR. // You can run it with the [literal]#++-jar++# parameter for the Java runtime. It requires the [filename]#vaadin-client# JAR, which contains the [classname]#DefaultWidgetSet#, Vaadin client-side framework. The compiler compiles a _client module_, which can either be a pure client-side module or a Vaadin widget set, that is, the Vaadin Client-Side Engine that includes the widgets used in the application. The client module is defined with a module descriptor, which was described in <>. The module descriptor for application widget sets is automatically generated. While you can compile client modules individually, in Vaadin applications you normally combine them in one application widget set. The application widget set includes any add-on and custom widgets. The compiler scans the class path for any widget sets to include in the application widget set. === Compilation Result The compiler writes the compilation result to a target folder that will include the compiled JavaScript with any static resources included in the module. [[clientside.compiling.maven]] == Compiling in Maven Projects The Vaadin Maven Plugin, which is enabled in all Vaadin archetypes, makes Maven to automatically compile the widget set when necessary. ifdef::web[] === Plugin Configuration [source,xml] ---- com.vaadin vaadin-maven-plugin ${vaadin.plugin.version} -Xmx512M -Xss1024k ${basedir}/target/classes/VAADIN/widgetsets false false true update-theme update-widgetset compile compile-theme ---- endif::web[] [[clientside.compiling.maven.modes]] === Compilation Modes The Vaadin Maven Plugin can compile widget sets either locally or online by using a cloud service. The online compilation requires that all the widget sets are available in certain public Maven repositories. As this is not the case when developing custom widgets, you must use the `local` mode. Local compilation is the default mode, so you only need to enable it if you have changed the mode to use the online service. See <> for more information. [[clientside.compiling.maven.compiling]] === Compiling You can explicitly compile the widget set with the [literal]#vaadin:compile# goal. On command-line: [subs="normal"] ---- [prompt]#$# [command]#mvn# [parameter]#vaadin:compile# ---- If there is no widget set defined, but you have add-on dependencies that need a custom widget set, the Vaadin Maven plugin will automatically generate a widget set definition for you. [[clientside.compiling.eclipse]] == Compiling in Eclipse When you have the Vaadin Plugin installed in Eclipse, you can simply click the *Compile Vaadin Widgetset* button in the toolbar. .Widget set compilation button in Eclipse image::img/widgetset-compiling-toolbar.png[width=50%, scaledwidth=60%] It will compile the widget set it finds from the project. If the project has multiple widget sets, such as one for custom widgets and another one for the project, you need to select the module descriptor of the widget set to compile before clicking the button. Compiling with the Vaadin Plugin for Eclipse currently requires that the module descriptor has suffix [filename]#Widgetset.gwt.xml#, although you can use it to compile also other client-side modules than widget sets. The result is written under [filename]#WebContent/VAADIN/widgetsets# folder. ifdef::web[] [[clientside.compiling.ant]] == Compiling with Ant Consider the following configuration: [source, xml, subs="normal"] ---- ---- The script assumes the Eclipse project layout with [filename]#WebContent# folder. The `compile-widgetset` target invokes the Vaadin Compiler to compile the widget set. The class path includes source folder in case there are custom widgets, compiled server-side classes, and the dependencies resolved with Ivy. [source, xml] ---- ---- You can copy the example build script to your project and, once configured, run it with Ant. You may need to do some configuration in the build targets, such as to exclude or include source or target paths. endif::web[]