Ignore:
Timestamp:
2013-06-23T13:59:41+02:00 (11 years ago)
Author:
bastik
Message:

applied #josm8817 - Plugins don't compile if you use a non UTF-8 locale (patch by Gnonthgol)

Location:
applications/editors/josm/plugins
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/build-common.xml

    r29442 r29694  
    3838    <target name="compile" depends="init">
    3939        <echo message="compiling sources for ${plugin.jar} ..."/>
    40         <javac srcdir="src" debug="true" destdir="${plugin.build.dir}" includeantruntime="false">
     40        <javac srcdir="src" debug="true" destdir="${plugin.build.dir}" includeantruntime="false" encoding="UTF-8">
    4141            <compilerarg value="-Xlint:deprecation"/>
    4242            <compilerarg value="-Xlint:unchecked"/>
  • applications/editors/josm/plugins/opendata/build.xml

    r29679 r29694  
    8181    <target name="compile" depends="init, compile_lang3, compile_poi, compile_jopendoc, compile_neptune, compile_j7zip">
    8282        <echo message="compiling sources for  ${plugin.jar} ... "/>
    83         <javac srcdir="src" debug="true" destdir="${plugin.build.dir}" includeAntRuntime="false">
     83        <javac srcdir="src" debug="true" destdir="${plugin.build.dir}" includeAntRuntime="false" encoding="UTF-8">
    8484            <classpath>
    8585                    <pathelement path="${plugin.build.dir}"/>
  • applications/editors/josm/plugins/videomapping/build.xml

    r29435 r29694  
    6464    <target name="compile" depends="init">
    6565        <echo message="compiling sources for ${plugin.jar} ..."/>
    66         <javac srcdir="src" classpathref="classpath" debug="true" destdir="${plugin.build.dir}">
     66        <javac srcdir="src" classpathref="classpath" debug="true" destdir="${plugin.build.dir}" encoding="UTF-8">
    6767            <compilerarg value="-Xlint:deprecation"/>
    6868            <compilerarg value="-Xlint:unchecked"/>
Note: See TracChangeset for help on using the changeset viewer.