source: branches/2.2/jabberit_messenger/java_source/src/buildfiles/openpgp.xml @ 3102

Revision 3102, 1.2 KB checked in by amuller, 14 years ago (diff)

Ticket #986 - Efetuado merge para o Branch 2.2( atualizacao do modulo)

  • 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        </target>
14
15        <target name="dist" depends="compile"
16        description="generate the distribution" >
17                <!-- Create the distribution directory -->
18                <mkdir dir="${dist}/plugins"/>
19                <jar jarfile="${dist}/plugins/openpgp.jar">
20                        <fileset dir="${build}" includes="nu/fw/jeti/plugins/openpgp/**" />
21                        <manifest>
22                                <attribute name="Main-Class" value="nu.fw.jeti.plugins.openpgp.GenerateAndWriteKey"/>
23                                <attribute name="Class-Path" value="../lib/cryptix-pki-api.jar ../lib/cryptix-jce-api.jar ../lib/cryptix-openpgp-provider.jar ../lib/cryptix-message-api.jar ../lib/cryptix-jce-provider.jar"/>
24                                <!--<attribute name="Class-Path" value="lib/cryptix-pki-api.jar lib/cryptix-jce-api.jar lib/cryptix-openpgp-provider.jar lib/cryptix-message-api.jar lib/cryptix-jce-provider.jar"/>-->
25                        </manifest>
26                </jar>
27        </target>
28       
29</project>
Note: See TracBrowser for help on using the repository browser.