编辑:感谢khmarbaise的回复。我没有检查我的目标文件夹...现在它的工作更好......但问题是它没有压缩一些空白区域。下面是使用单个文件压缩后得到的输出。
Ext.onReady(function(){new Ext.Window({title:“Hello”,width:300,height:500,items:getItems()})。show() });
function getItems(){var a = new Ext.Panel({title:“我是Item Panel”}); 回来一个 };
分号后,它没有压缩白色空间.....
下面是我用来压缩我的JS文件的代码。我可以将我的所有js文件复制到一个文件中。但是无法压缩它。请帮帮我......
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>yuicompressor-maven-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<goals>
<goal>compress</goal>
</goals>
</execution>
</executions>
<configuration>
<removeIncluded>false</removeIncluded>
<jswarn>false</jswarn>
<aggregations>
<aggregation>
<insertNewLine>true</insertNewLine>
<removeIncluded>false</removeIncluded>
<inputDir>src/main/webapp/resources/js</inputDir>
<includes>
<include>D:/TestWorkSpace/myProject/src/main/webapp/resources/js/panel.js</include>
</includes>
<output>src/main/webapp/resources/js/min.js</output>
</aggregation>
</aggregations>
</configuration>
</plugin>
答案 0 :(得分:0)
永远不要使用像d:/等的硬编码路径。更好地使用像$ {project.basedir}这样的东西。
您不应该将修改后的代码放回src /区域。输出标记似乎不是基于文档存在的,但相反的是标记outputDirectory存在,默认情况下指向目标文件夹。我建议首先尝试不配置输出标签。