成人在线亚洲_国产日韩视频一区二区三区_久久久国产精品_99国内精品久久久久久久

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

java - yuicompressor-maven-plugin 合并可用卻不壓縮, 哪配置不對(duì)?

瀏覽:188日期:2024-02-09 18:42:53

問(wèn)題描述

想在構(gòu)建時(shí)自動(dòng)壓縮和合并指定的 js 文件,免得每次改了后手動(dòng)壓縮,但是輸出的文件卻沒(méi)有壓縮、混淆代碼,試過(guò)把 aggregations 去掉但什么也沒(méi)發(fā)生,輸出如果指向 ${project.build.directory}/${project.build.finalName} 下面則在清理后會(huì)報(bào)找不到文件,即使 phase 改成 prepare-package 也不行。有一點(diǎn)猜測(cè)可能引起問(wèn)題的地方在于我的 webapp 目錄是特別配置的,不是默認(rèn)位置,但試了設(shè)置 sourceDirectory 和 outputDirecotry 無(wú)效。pom.xml 中配置如下:

<plugin> <groupId>net.alchim31.maven</groupId> <artifactId>yuicompressor-maven-plugin</artifactId> <version>1.5.1</version> <executions><execution> <goals><goal>compress</goal> </goals></execution> </executions> <configuration><encoding>UTF-8</encoding><jswarn>false</jswarn><suffix>.min</suffix><excludes> <exclude>**/*.min.*</exclude> <exclude>**/*-min.*</exclude></excludes><aggregations> <aggregation><output>${basedir}/web/static/assets/hongscore.js</output><inputDir>${basedir}/web/static/assets/src</inputDir><includes> <include>hongscore.js</include> <include>hongscore-form.js</include> <include>hongscore-list.js</include> <include>hongscore-tree.js</include> <include>hongscore-fork.js</include> <include>hongscore-file.js</include> <include>hongscore-date.js</include></includes><removeIncluded>false</removeIncluded><insertNewLine>true</insertNewLine> </aggregation></aggregations> </configuration></plugin>

問(wèn)題解答

回答1:

我靠,果然,配置 warSourceDirectory 指向修改過(guò)的 webapp 目錄就搞定了,在寫(xiě)下問(wèn)題時(shí)才想起該試試的,還以為只要在 war 打包里配置好了其他地方就都能正常識(shí)別了。

標(biāo)簽: java