exclude '**/*.gif'
exclude '**/*.jpg'
exclude '**/*.png'
- filter(ReplaceTokens, beginToken: '$$', endToken: '$$', tokens: ['Version-Rel': JALVIEW_VERSION])
+ filter(ReplaceTokens, beginToken: '$$', endToken: '$$', tokens: ['Version-Rel': JALVIEW_VERSION,'Year-Rel': getDate("yyyy")])
}
from(inputDir) {
include '**/*.gif'
dependsOn pubhtmlhelp
inputs.dir("$classes/$helpDir")
- outputs.file("build/distribution/help/helpTOC.html")
+ outputs.dir("$helpOutputDir")
}
resourceDir = resources
helpParentDir = help
helpDir = help
-helpOutputDir = build/distribution/help
+helpOutputDir = build/distributions/help
docDir = doc
sourceDir = src
schemaDir = schemas
<project name="Publish Help Webpages for Jalview" default="pubhtmlhelp">
<target name="pubhtmlhelp">
- <property name="appletHelpDir" value="../build/distribution/help"/>
+ <property name="appletHelpDir" value="../build/distributions/help"/>
<!-- finally, publish the help files -->
<javac srcdir="." destdir="." includes="help2Website.java"/>
<java fork="true" dir="${helpBuildDir}" classpath="." classname="help2Website"/>