Gentoo Archives: gentoo-commits

From: "Krzysztof Pawlik (nelchael)" <nelchael@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-java/hessian/files: build.xml-4.0.3
Date: Sat, 03 Apr 2010 10:57:28
Message-Id: E1Ny12b-00022K-Sm@stork.gentoo.org
1 nelchael 10/04/03 10:57:25
2
3 Added: build.xml-4.0.3
4 Log:
5 Version bump.
6 (Portage version: 2.1.8.3/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 dev-java/hessian/files/build.xml-4.0.3
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/hessian/files/build.xml-4.0.3?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/hessian/files/build.xml-4.0.3?rev=1.1&content-type=text/plain
13
14 Index: build.xml-4.0.3
15 ===================================================================
16 <?xml version="1.0"?>
17 <project name="hessian" default="all" basedir=".">
18 <target name="compile">
19 <mkdir dir="build"/>
20 <javac debug="false" srcdir="src" destdir="build">
21 <classpath>
22 <fileset dir="lib" includes="**/*.jar"/>
23 </classpath>
24 </javac>
25 </target>
26 <target name="all" depends="hessian.jar,burlap.jar,services.jar"/>
27 <target name="hessian.jar" depends="compile">
28 <jar destfile="hessian.jar">
29 <fileset dir="build" includes="**/hessian/**/*.class"/>
30 </jar>
31 </target>
32 <target name="burlap.jar" depends="compile">
33 <jar destfile="burlap.jar">
34 <fileset dir="build" includes="**/burlap/**/*.class"/>
35 </jar>
36 </target>
37 <target name="services.jar" depends="compile">
38 <jar destfile="services.jar">
39 <fileset dir="build" includes="**/services/**/*.class"/>
40 </jar>
41 </target>
42 </project>