diff options
Diffstat (limited to 'themes/pom.xml')
-rw-r--r-- | themes/pom.xml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/themes/pom.xml b/themes/pom.xml index 76af861d0c..9181af2e21 100644 --- a/themes/pom.xml +++ b/themes/pom.xml @@ -36,6 +36,12 @@ </dependency> <dependency> + <groupId>com.vaadin</groupId> + <artifactId>vaadin-icons</artifactId> + <scope>provided</scope> + </dependency> + + <dependency> <groupId>com.carrotsearch</groupId> <artifactId>smartsprites</artifactId> <scope>provided</scope> @@ -51,6 +57,29 @@ <build> <plugins> <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-dependency-plugin</artifactId> + <version>3.0.0</version> + <executions> + <execution> + <id>copy-font-icons</id> + <phase>process-resources</phase> + <goals> + <goal>unpack-dependencies</goal> + </goals> + <!-- Vaadin Icons font files and .scss to included with Valo --> + <configuration> + <includeGroupIds>com.vaadin</includeGroupIds> + <includeArtifactIds>vaadin-icons</includeArtifactIds> + <excludeTransitive>true</excludeTransitive> + <includes>VAADIN\/addons\/vaadin-icons\/**</includes> + <overWrite>true</overWrite> + <outputDirectory>${project.basedir}/src/main/themes/</outputDirectory> + </configuration> + </execution> + </executions> + </plugin> + <plugin> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> |