我想通过维护目录结构使用 ant build 脚本将版本号附加到所有 js 文件

I want to append version number to all js files using ant build script by maintaining dir structure

我有多个 js 文件,想在构建时附加或添加版本号。 但是我也想为部署维护目录结构

<copy todir="${sourse_dir_path}/js/" overwrite="true">
        <fileset dir="Destination_path/js"/>
        <firstmatchmapper>
            <globmapper from="*.js" to="*-${major.minor.number}-${build.number}.js"/>
        </firstmatchmapper>
    </copy>