source: plugins/base2/net.sf.basedb.normalizations/trunk/build.xml @ 727

Last change on this file since 727 was 727, checked in by Martin Svensson, 15 years ago

First commit of the normalization package. Contains folder structure, some general files and a beginning of the average normalization.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 1.2 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?> 
2<project   
3  name="NormalizationPlugins"   
4    default="dist"   
5    basedir="." 
6    > 
7   
8    <!-- variables used --> 
9    <property name="plugin.name" value="normalization-plugins" /> 
10    <property name="src" value="src" /> 
11    <property name="bin" value="bin" /> 
12   
13    <!-- set up classpath for compiling --> 
14    <path id="classpath"> 
15      <fileset dir="lib"> 
16          <include name="**/*.jar"/> 
17        </fileset> 
18    </path> 
19   
20       
21    <!-- main target --> 
22    <target   
23        name="dist"   
24        description="Compiles the package and put it in a jar-file"
25  > 
26        <javac   
27          encoding="ISO-8859-1" 
28            srcdir="${src}" 
29            destdir="${bin}" 
30            classpathref="classpath" 
31        /> 
32   
33        <jar   
34            jarfile="${plugin.name}.jar"   
35            basedir="bin" 
36            manifest="META-INF/MANIFEST.MF" 
37    > 
38          <!--Include this to add required files for auto registration wizard--> 
39          <metainf file="META-INF/base-plugins.xml"></metainf> 
40          <metainf file="META-INF/base-configurations.xml"></metainf>         
41        </jar>   
42     </target> 
43</project> 
Note: See TracBrowser for help on using the repository browser.