Changeset 4085
- Timestamp:
- Jan 17, 2008, 12:08:40 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/build.xml
r4049 r4085 83 83 <property name="javac.arg" value="-Xlint:unchecked" 84 84 description="Extra arguments sent to Java compiler" /> 85 <property name="javac.source" value="1.5" 86 description="Default value for the 'source' attribute when compiling java code" /> 87 <property name="javac.target" value="1.5" 88 description="Default value for the 'target' attribute when compiling java code" /> 89 <property name="javac.encoding" value="ISO-8859-1" 90 description="Default value for the 'encoding' attribute when compiling java code" /> 85 91 <property name="src" location="src" description="Location of source files" /> 86 92 <property name="build" location="build" description="Location of compiled files" /> … … 439 445 srcdir="${info.src}" 440 446 destdir="${info.build}" 441 encoding=" ISO-8859-1"447 encoding="${javac.encoding}" 442 448 debug="true" 443 449 deprecation="true" 450 source="${javac.source}" 451 target="${javac.target}" 444 452 > 445 453 <compilerarg value="${javac.arg}" /> … … 472 480 destdir="${core.build}" 473 481 classpathref="core.classpath" 474 encoding=" ISO-8859-1"482 encoding="${javac.encoding}" 475 483 debug="true" 476 484 deprecation="true" 485 source="${javac.source}" 486 target="${javac.target}" 477 487 > 478 488 <compilerarg value="${javac.arg}" /> … … 631 641 destdir="${coreplugins.build}" 632 642 classpathref="coreplugins.classpath" 633 encoding=" ISO-8859-1"643 encoding="${javac.encoding}" 634 644 debug="true" 635 645 deprecation="true" 646 source="${javac.source}" 647 target="${javac.target}" 636 648 > 637 649 <compilerarg value="${javac.arg}" /> … … 676 688 destdir="${examples.plugins.build}" 677 689 classpathref="examples.plugins.classpath" 678 encoding=" ISO-8859-1"690 encoding="${javac.encoding}" 679 691 debug="true" 680 692 deprecation="true" 693 source="${javac.source}" 694 target="${javac.target}" 681 695 > 682 696 <compilerarg value="${javac.arg}" /> … … 746 760 destdir="${examples.webservices.build}" 747 761 classpathref="examples.webservices.classpath" 748 encoding=" ISO-8859-1"762 encoding="${javac.encoding}" 749 763 debug="true" 750 764 deprecation="true" 765 source="${javac.source}" 766 target="${javac.target}" 751 767 > 752 768 <compilerarg value="${javac.arg}" /> … … 808 824 destdir="${test.build}" 809 825 classpathref="test.classpath" 810 encoding=" ISO-8859-1"826 encoding="${javac.encoding}" 811 827 debug="true" 812 828 deprecation="true" 829 source="${javac.source}" 830 target="${javac.target}" 813 831 > 814 832 <compilerarg value="${javac.arg}" /> … … 870 888 destdir="${web.build}" 871 889 classpathref="web.classpath" 872 encoding=" ISO-8859-1"890 encoding="${javac.encoding}" 873 891 debug="true" 874 892 deprecation="true" 893 source="${javac.source}" 894 target="${javac.target}" 875 895 > 876 896 <compilerarg value="${javac.arg}" /> … … 937 957 memorymaximumsize="512m" 938 958 fork="true" 959 source="${javac.source}" 960 target="${javac.target}" 939 961 > 940 962 </javac> … … 1008 1030 destdir="${webservices.build}/server" 1009 1031 classpathref="webservices.server.classpath" 1010 encoding=" ISO-8859-1"1032 encoding="${javac.encoding}" 1011 1033 debug="true" 1012 1034 deprecation="true" 1035 source="${javac.source}" 1036 target="${javac.target}" 1013 1037 > 1014 1038 <src path="${webservices.src}/server" /> … … 1037 1061 destdir="${webservices.build}/client" 1038 1062 classpathref="webservices.client.classpath" 1039 encoding=" ISO-8859-1"1063 encoding="${javac.encoding}" 1040 1064 debug="true" 1041 1065 deprecation="true" 1066 source="${javac.source}" 1067 target="${javac.target}" 1042 1068 > 1043 1069 <src path="${webservices.src}/client/java" /> … … 1123 1149 destdir="${installprg.build}" 1124 1150 classpathref="installprg.classpath" 1125 encoding=" ISO-8859-1"1151 encoding="${javac.encoding}" 1126 1152 debug="true" 1127 1153 deprecation="true" 1154 source="${javac.source}" 1155 target="${javac.target}" 1128 1156 > 1129 1157 <compilerarg value="${javac.arg}" /> … … 1166 1194 destdir="${jobagent.build}" 1167 1195 classpathref="jobagent.classpath" 1168 encoding=" ISO-8859-1"1196 encoding="${javac.encoding}" 1169 1197 debug="true" 1170 1198 deprecation="true" 1199 source="${javac.source}" 1200 target="${javac.target}" 1171 1201 > 1172 1202 <compilerarg value="${javac.arg}" /> … … 1209 1239 destdir="${migrate.build}" 1210 1240 classpathref="migrate.classpath" 1211 encoding=" ISO-8859-1"1241 encoding="${javac.encoding}" 1212 1242 debug="true" 1213 1243 deprecation="true" 1244 source="${javac.source}" 1245 target="${javac.target}" 1214 1246 > 1215 1247 <compilerarg value="${javac.arg}" /> … … 1271 1303 linksource="false" 1272 1304 breakiterator="yes" 1273 encoding=" iso-8859-1"1305 encoding="${javac.encoding}" 1274 1306 overview="${javadoc.src}/overview.html" 1275 1307 >
Note: See TracChangeset
for help on using the changeset viewer.