You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 23, 2022. It is now read-only.
Hi, my js files get aggregated in one, but not compressed. I think it's because I'm using phonegap to develop mobile apps, but I have not seen any conflicts. This is my pom.xml:
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>yuicompressor-maven-plugin</artifactId>
<version>1.2</version>
<executions>
<execution>
<phase>process-resources</phase>
<goals>
<goal>compress</goal>
</goals>
</execution>
</executions>
<configuration>
<preProcessAggregates>true</preProcessAggregates>
<failOnWarning>true</failOnWarning>
<aggregations>
<aggregation>
<!-- remove files after aggregation (default: false)
<removeIncluded>true</removeIncluded>
-->
<!-- insert new line after each concatenation (default: false) -->
<insertNewLine>true</insertNewLine>
<output>${basedir}/assets/www/js/test-all.js</output>
<!-- files to include, path relative to output's directory or absolute path-->
<!--inputDir>base directory for non absolute includes, default to parent dir of output</inputDir-->
<includes>
<include>**/*.js</include>
</includes>
</aggregation>
</aggregations>
</configuration>
</plugin>
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi, my js files get aggregated in one, but not compressed. I think it's because I'm using phonegap to develop mobile apps, but I have not seen any conflicts. This is my pom.xml:
The text was updated successfully, but these errors were encountered: