0

Is there a way to show german umlauts like äÄöÖüÜ in the description attribute?

<target name="mytarget" description="Some fancy german umlauts äÄöÖüÜ">
    <!-- Stuff -->
</target>

If i call my target:

machine:html root$ ant -p

The console prompt looks like

mytarget     some fancy german umlauts ??????.
Cœur
  • 37,241
  • 25
  • 195
  • 267
gearsdigital
  • 13,915
  • 6
  • 44
  • 73

1 Answers1

0

This link: encoding

Essentially it suggest supplying a command line argument to ant that specifies which encoding to use for the tasks. If that is not where the issue is, validate that your console has the proper encoding on it. This can be tested by trying to generate a diacritic within the console. If that fails, change the encoding on your console/terminal.

Community
  • 1
  • 1
Woot4Moo
  • 23,987
  • 16
  • 94
  • 151