You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
730 B

```java
<plugin>
<groupId>xyz.wbsite</groupId>
<artifactId>optimizer-maven-plugin</artifactId>
<version>1.0-SNAPSHOT</version>
<executions>
<execution>
<goals>
<goal>run</goal>
</goals>
<phase>compile</phase>
</execution>
</executions>
<configuration>
<tasks>
<task>
<taskType>COMPRESS_CSS</taskType>
<directory>src/main/resources/static/css/</directory>
<targetPath>target/classes/static/css/</targetPath>
<include>**/*.css</include>
<exclude>**/*.min.css</exclude>
</task>
</tasks>
</configuration>
</plugin>
```

Powered by TurnKey Linux.