~ubuntu-branches/debian/jessie/latexdraw/jessie

« back to all changes in this revision

Viewing changes to build_installer.xml

  • Committer: Bazaar Package Importer
  • Author(s): Stuart Prescott
  • Date: 2009-05-03 23:49:35 UTC
  • Revision ID: james.westby@ubuntu.com-20090503234935-cls7n48x018g0vk2
Tags: upstream-2.0.2+1
ImportĀ upstreamĀ versionĀ 2.0.2+1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
<project name="Template Buildfile" default="jar" basedir=".">
 
3
        <property name="dir.out" value="out"/>
 
4
         <property name="jar.junit" value="/opt/eclipse/plugins/org.junit4_4.3.1/junit.jar"/>
 
5
        
 
6
        <!-- Creates the output directories -->
 
7
        <target name="prepare">
 
8
        <mkdir dir="${dir.out}"/>
 
9
        </target>
 
10
                
 
11
        <!-- Creates the jar -->
 
12
        <target name="jar" description="Generates installer.jar">
 
13
                
 
14
                <jar jarfile="${dir.out}/installer.jar" manifest="META-INF/MANIFEST.MF">
 
15
                        <!-- Creates the manifest -->
 
16
                        <manifest>
 
17
                                <attribute name="Main-Class" value="latexDraw.installer.InstallerUI"/>
 
18
                        </manifest>
 
19
                        
 
20
                 <!-- Filters the files -->
 
21
                 <fileset dir=""
 
22
                         includes="latexDraw/installer/*.class ; latexDraw/ui/listeners/InstallerListener.class ; latexDraw/util/LaTeXDrawPath.class ; res/LaTeXDrawIcon.png"
 
23
                 />
 
24
                </jar>
 
25
        </target>
 
26
        
 
27
</project>
 
28
 
 
29
 
 
30
 
 
31
 
 
32
 
 
33
 
 
34
 
 
35
 
 
36
 
 
37