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

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

References #117 Average normalization plug-in is almost done. The plug-in cannot handle two-channel data, the implementation needs to be verified and tested.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 1.4 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="name" value="normalization-plugins" /> 
10    <property name="src" value="src" /> 
11    <property name="build" value="build" /> 
12  <property name="dist" value="dist" />
13  <property name="jar" value="${name}.jar" />
14 
15    <!-- set up classpath for compiling --> 
16    <path id="classpath"> 
17      <fileset dir="lib"> 
18          <include name="**/*.jar"/> 
19        </fileset> 
20    </path> 
21   
22       
23    <!-- main target --> 
24    <target   
25        name="dist"   
26        description="Compiles the package and put it in a jar-file"
27  > 
28        <javac   
29          encoding="ISO-8859-1" 
30            srcdir="${src}" 
31            destdir="${build}" 
32            classpathref="classpath" 
33        /> 
34      <copy todir="${build}">
35      <fileset dir="." includes="META-INF/*" />
36    </copy>
37      <replace token="%%plugins.jar%%" value="${jar}" file="${build}/META-INF/base-plugins.xml" /> 
38        <jar   
39            jarfile="${dist}/${jar}"   
40            basedir="build" 
41            manifest="META-INF/MANIFEST.MF" 
42    > 
43          <!--Include this to add required files for auto registration wizard--> 
44          <metainf file="META-INF/base-plugins.xml"></metainf> 
45          <!-- <metainf file="META-INF/base-configurations.xml"></metainf> -->
46        </jar>   
47     </target> 
48</project> 
Note: See TracBrowser for help on using the repository browser.