primefaces-themes
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.primefaces</groupId> <artifactId>primefaces-themes</artifactId> <version>15.0.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.primefaces</groupId> <artifactId>primefaces-parent</artifactId> <version>15.0.4</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>primefaces-themes</artifactId> <packaging>jar</packaging> <name>PrimeFaces Themes</name> <properties> <sonar.skip>true</sonar.skip> </properties> <build> <pluginManagement> <plugins> <plugin> <groupId>io.github.cleydyr</groupId> <artifactId>dart-sass-maven-plugin</artifactId> <version>1.5.0</version> <configuration> <inputFolder>${project.basedir}</inputFolder> <outputFolder>${project.basedir}</outputFolder> <update>true</update> <noSourceMap>true</noSourceMap> <style>COMPRESSED</style> <quiet>false</quiet> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>io.github.cleydyr</groupId> <artifactId>dart-sass-maven-plugin</artifactId> <executions> <execution> <id>generate-themes</id> <phase>generate-resources</phase> <goals> <goal>compile-sass</goal> </goals> <configuration> <inputFolder>${project.basedir}</inputFolder> <outputFolder>${project.basedir}</outputFolder> <update>true</update> <noSourceMap>true</noSourceMap> <style>COMPRESSED</style> <quiet>false</quiet> </configuration> </execution> </executions> </plugin> <!-- Add the directories as source roots --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>3.7.1</version> <executions> <execution> <id>source-jar</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptors> <descriptor>src/main/assembly/source-jar.xml</descriptor> </descriptors> <finalName>${project.artifactId}-${project.version}</finalName> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>copy-default-theme</id> <phase>process-resources</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.basedir}/../primefaces/src/main/resources/META-INF/resources</outputDirectory> <resources> <resource> <directory>themes</directory> <includes> <include>primefaces-saga-blue/theme.css</include> </includes> </resource> </resources> </configuration> </execution> <execution> <id>copy-themes</id> <phase>process-resources</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>target/classes/META-INF/resources</outputDirectory> <resources> <resource> <directory>themes</directory> <includes> <include>*/theme.css</include> <include>*/fonts/*</include> </includes> </resource> </resources> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>