Docs

Documentation versions (currently viewingVaadin 14)

You are viewing documentation for an older Vaadin version. View latest documentation

Packaging a Theme for Reuse

A custom theme can be packaged into a JAR file for use in multiple applications as follows:

  1. Create a new Maven project with the following structure and add your theme files to the theme folder (1):

    [project root]
    ├── src
    │   └── main
    │       └── resources
    │           └── META-INF
    │               └── resources
    │                   └── themes
    │                       └── my-theme  (1)
    └── pom.xml
  2. Update pom.xml as follows:

    • Add the Vaadin version property:

      <vaadin.version>14.11.7</vaadin.version>
    • Add dependency management:

      <dependencyManagement>
        <dependencies>
          <dependency>
            <groupId>com.vaadin</groupId>
            <artifactId>vaadin-bom</artifactId>
            <version>${vaadin.version}</version>
            <type>pom</type>
            <scope>import</scope>
          </dependency>
        </dependencies>
      </dependencyManagement>
    • Update dependencies to only contain the following:

      <dependency>
        <groupId>com.vaadin</groupId>
        <artifactId>vaadin</artifactId>
        <scope>provided</scope>
      </dependency>
  3. If the theme uses npm assets, as described in Style Sheets From npm Packages, add a Dependencies.java class (1) with the corresponding @NpmPackage annotations:

    [project root]
    └── src
        └── main
            └── java
                └── com
                    └── vaadin
                        └── flow
                            └── theme
                                └── Dependencies.java  (1)
    Note
    Dependency class package
    The package in which the java class is placed does not have to be com.vaadin.flow.theme package as in the example above, but it is recommended for themes that are going to be used in Vaadin Spring Boot applications, as it is always automatically scanned. Other recommended packages are com.vaadin.flow.component and com.vaadin.shrinkwrap. See Vaadin’s Spring package scanning documentation for using other custom packages.
  4. Create the JAR with mvn install.

To use the packaged theme in an application, add the JAR as a dependency and apply the theme using the @Theme annotation.

2F0CE41F-B2B3-44B0-A9EF-4F1A11EBEADF