| | 822 | |
| | 823 | <!-- buildFileStorageProvider task --> |
| | 824 | <target name="buildFileStorageProvider" |
| | 825 | description="Builds a Java class needed by dojo.storage.browser.FileStorageProvider"> |
| | 826 | <echo> |
| | 827 | Building optional Java class for dojo.storage.browser.FileStorageProvider. Don't |
| | 828 | worry if this fails; the generated class file is checked into Subversion and is |
| | 829 | available in src/storage/java/ without rebuilding it. |
| | 830 | </echo> |
| | 831 | |
| | 832 | <javac srcdir="${root}/src/storage/java/" |
| | 833 | destdir="${root}/src/storage/java/" |
| | 834 | debug="on" |
| | 835 | target="1.1" |
| | 836 | source="1.1" |
| | 837 | failonerror="false"/> |
| | 838 | |
| | 839 | <jar destfile="${root}/DojoFileStorageProvider.jar"> |
| | 840 | <fileset dir="${root}/src/storage/java/" |
| | 841 | includes="*.class"/> |
| | 842 | </jar> |
| | 843 | </target> |
| | 844 | <!-- end buildFileStorageProvider task --> |