source: 3thparty/jmessenger/src/buildfiles/spell.xml @ 3952

Revision 3952, 1.1 KB checked in by alexandrecorreia, 13 years ago (diff)

Ticket #1710 - Adicao do codigo fonte java do componente jmessenger(jabberit_messenger)

  • Property svn:executable set to *
Line 
1<?xml version="1.0"?>
2<project name="Jeti" default="dist" basedir="../..">
3        <description>
4        simple example build file
5    </description>
6        <!-- set global properties for this build -->
7        <property name="src" location="src"/>
8        <property name="build" location="build"/>
9        <property name="dist"  location="dist"/>
10
11        <target name="compile" description="compile the source " >
12                <ant antfile="src/buildfiles/Compile.xml" target="compile"/>
13                <javac srcdir="${src}" destdir="${build}"
14                debug="on"
15                debuglevel="lines,source"
16                source="1.4"
17        includes="nu/fw/jeti/plugins/spell/** com/swabunga/**"/>
18        </target>
19
20        <target name="dist" depends="compile"
21        description="generate the distribution" >
22                <!-- Create the distribution directory -->
23                <mkdir dir="${dist}/plugins"/>
24                <jar jarfile="${dist}/plugins/spell.jar">
25                        <fileset dir="${build}" includes="nu/fw/jeti/plugins/spell/** com/swabunga/**" />
26                        <fileset dir="${src}" includes="com/swabunga/**/*.properties" />
27                        <manifest>
28                                <attribute name="Main-Class" value="nu.fw.jeti.plugins.spell.BuildDictionaryFile"/>
29                         </manifest>
30                </jar>
31        </target>
32       
33</project>
Note: See TracBrowser for help on using the repository browser.