我需要创建一个版本的Dojo 。我可以使用我创建的profile
来做到这一点。发布版本在release
源的Dojo
文件夹中生成。是否可以将其移动到自定义文件夹?你能告诉我吗?
我正在尝试使用我的ANT脚本。
<java fork="true" dir="${shrinksafe.util.path}/buildscripts" classname="org.mozilla.javascript.tools.shell.Main">
<arg value="build.js" />
<arg line="releaseDir={dojo.work.folder}/apac/html profile=test_dojo action=clean,release version=1.3.2test_v1.0 releaseName=test_dojo cssOptimize=comments copyTests=false cssImportIgnore=layout/SplitContainer.css" />
<classpath>
<pathelement location="${shrinksafe.util.path}/shrinksafe/js.jar"/>
<pathelement location="${shrinksafe.util.path}/shrinksafe/shrinksafe.jar"/>
<pathelement path="${java.class.path}"/>
</classpath>
</java>
答案 0 :(得分:0)
您可以在构建时传递releaseDir=PATH_TO_THE_DIR
命令行选项。
答案 1 :(得分:0)
这是我的例子,工作正常。
<java fork="true"
failonerror="true"
dir="../dojo/util/buildscripts"
classname="org.mozilla.javascript.tools.shell.Main">
<classpath>
<pathelement location="../dojo/util/shrinksafe/js.jar"/>
<pathelement location="../dojo/util/shrinksafe/shrinksafe.jar"/>
</classpath>
<jvmarg value="-Xmx512M"/>
<arg value="build.js"/>
<arg value="version=1.6.0"/>
<arg value="profileFile=${basedir}/src/main/webapp/resource/js/encuestame.profile.js"/>
<arg value="action=clean,release"/>
<arg value="releaseDir=${project.build.directory}/dojo-compiled"/>
<arg value="optimize=shrinksafe"/>
<arg value="layerOptimize=shrinksafe"/>
<arg value="cssOptimize=comments"/>
<arg value="mini=true"/>
</java>
pom文件中的代码,第276行ANT Code inside pom.xml
答案 2 :(得分:0)
releaseDir属性应该是相对于util / buildscripts目录的路径。所以它不能接受像$ {project.build.directory}这样的参数。你需要给出一个像../../ dojoBuild
这样的相对路径