如何使用org.apache.maven.plugins:maven-war-plugin
排除CSS文件?
如果最小化,我需要排除CSS。如果存在xxx.min.css,则排除xxx.css。 我仅针对具有名称模式的文件创建了解决方案,这并不是在所有情况下都通用:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<packagingExcludes>%regex[.*[-+](\d+)(?!=\.min)\.css]</packagingExcludes>
</configuration>
<executions>
<execution>
<id>parent-resources</id>
<phase>generate-sources</phase>
<goals>
<goal>exploded</goal>
</goals>
</execution>
</executions>
</plugin>