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.
王兵 e1c21ba2d7
备份
4 years ago
.idea 备份 4 years ago
src 备份 4 years ago
.gitignore 备份 4 years ago
README.md 备份 4 years ago
pom.xml 备份 4 years ago

README.md

<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.