Commit 2fb0b78069045cad347b23262b4e9c956b71e9bc
1 parent
3dad76cc
fix: in windows environment build war package encoding type exist problem
Showing
1 changed file
with
1 additions
and
1 deletions
... | ... | @@ -567,7 +567,7 @@ |
567 | 567 | </target> |
568 | 568 | |
569 | 569 | <target name="war" depends="app, javac" description="Create the stand-alone war file"> |
570 | - <zip destfile="${build.dir}/${war.name}" basedir="${war.dir}" > | |
570 | + <zip encoding="utf-8" destfile="${build.dir}/${war.name}" basedir="${war.dir}" > | |
571 | 571 | </zip> |
572 | 572 | </target> |
573 | 573 | ... | ... |