# vaadin-style-combine-maven-plugin **Repository Path**: mirrors_codecentric/vaadin-style-combine-maven-plugin ## Basic Information - **Project Name**: vaadin-style-combine-maven-plugin - **Description**: Maven plugin for combining multiple css files into a single styles.css - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2025-10-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README vaadin-style-combine-maven-plugin ================================= Maven plugin for combining multiple css files into a single styles.css This maven plugin will combine style.css files so that only one request will be made. It works in a limited amount of scenarios, similar to the way Vaadin does it. It requires a theme to have a "styles.css" like this: @import "../reindeer/styles.css"; @import "general/general.css"; @import "header/header.css"; After it has run, it will generate a folder "generated-vaadin-styles" in "target". To use this one instead of the original, use the following maven-war-plugin config: org.apache.maven.plugins maven-war-plugin VAADIN/themes/theme/styles.css WEB-INF/web.xml ${project.build.directory}/generated-vaadin-styles/ To run the combine plugin: de.codecentric.vaadin vaadin-style-combine-maven-plugin 1.0 theme compile combine