Changeset 2310 for Trunk/SpeechSubmission/VFSpeechSubmission/java/build.xml
- Timestamp:
- 10/03/07 16:27:43 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
Trunk/SpeechSubmission/VFSpeechSubmission/java/build.xml
r2248 r2310 1 1 <?xml version="1.0" encoding="ISO-8859-1" ?> 2 <project name=" moodlespeex" default="package" basedir=".">3 <description> Moodlespeex audio messaging tool (postlet/JSpeex)</description>2 <project name="VFSpeechRecorder" default="package" basedir="."> 3 <description>VoxForge Speech Recorder (postlet)</description> 4 4 5 5 <!-- set global properties for this build --> … … 25 25 <property name="debug" value="off"/> 26 26 27 28 29 30 31 27 <target name="init" description="Initialise ant" depends="clean"> 32 28 <tstamp> … … 39 35 </target> 40 36 41 42 43 44 37 <target name="compile" depends="init" 45 description="Compile MoodleSpeex recorder" >38 description="Compile VoxForge Speech" > 46 39 47 40 … … 55 48 target="1.4" 56 49 > 57 <include name=" moodlespeex/*.java"/>50 <include name="vfspeechrecorder/*.java"/> 58 51 <include name="org/xiph/speex/*.java"/> 59 52 <include name="org/xiph/speex/spi/*.java"/> … … 68 61 <!-- Before release, a more restricted set of files to include in each JAR should be specified --> 69 62 70 <jar jarfile="${dist}/ moodlespeexrecorder.jar">63 <jar jarfile="${dist}/vfspeechrecorder.jar"> 71 64 <fileset dir="${build.java}"> 72 65 <include name="**/*.class"/> … … 82 75 <attribute name="Built-With" value="${os.name} ${os.version} ${os.arch}"/> 83 76 </section> 84 <attribute name="Main-Class" value=" moodlespeex.MoodleSpeexRecorderApplet"/>77 <attribute name="Main-Class" value="vfspeechrecorder.MoodleSpeexRecorderApplet"/> 85 78 </manifest> 86 79 </jar> 87 80 88 <jar jarfile="${dist}/ moodlespeexplayer.jar">81 <jar jarfile="${dist}/vfspeechrecorder.jar"> 89 82 <fileset dir="${build.java}"> 90 83 <include name="**/*.class"/> … … 112 105 <attribute name="Built-With" value="${os.name} ${os.version} ${os.arch}"/> 113 106 </section> 114 <attribute name="Main-Class" value=" moodlespeex.MoodleSpeexPlayerApplet"/>107 <attribute name="Main-Class" value="vfspeechrecorder.MoodleSpeexPlayerApplet"/> 115 108 </manifest> 116 109 </jar>