diff options
-rw-r--r-- | themes/pom.xml | 2 | ||||
-rw-r--r-- | themes/src/main/resources/VAADIN/themes/valo/shared/_global.scss | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/themes/pom.xml b/themes/pom.xml index 0b11b4ac1b..ce28a5fac2 100644 --- a/themes/pom.xml +++ b/themes/pom.xml @@ -63,6 +63,7 @@ <filtering>false</filtering> <excludes> <exclude>**/base.scss</exclude> + <exclude>**/valo/shared/_global.scss</exclude> </excludes> </resource> <resource> @@ -70,6 +71,7 @@ <filtering>true</filtering> <includes> <include>**/base.scss</include> + <include>**/valo/shared/_global.scss</include> </includes> </resource> </resources> diff --git a/themes/src/main/resources/VAADIN/themes/valo/shared/_global.scss b/themes/src/main/resources/VAADIN/themes/valo/shared/_global.scss index 39b5a4e7d9..55de987120 100644 --- a/themes/src/main/resources/VAADIN/themes/valo/shared/_global.scss +++ b/themes/src/main/resources/VAADIN/themes/valo/shared/_global.scss @@ -26,7 +26,7 @@ $valo-global-included: false !default; // Version info for the debug window .v-vaadin-version:after { - content: "@version@"; + content: "${project.version}"; } // Core widget styles come before any other component (and are always included), |