• Views
  • Iteration Report
  • My Iteration Report
  •  
OMERO.server
  • Login
  • Help/Guide
  • About Trac
  • Preferences
  • Wiki
  • Timeline
  • Roadmap
  • Browse Source
  • View Tickets
  • Search

Context Navigation

  • Last Change
  • Annotate
  • Revision Log

root/branches/3.0-Beta1/components/bioformats-omero/build.xml

Revision 1196, 1.5 kB (checked in by callan, 21 months ago)

Syncing with r1195 (trunk).

Line 
1<?xml version="1.0" encoding="utf-8"?>
2<project name="bioformats-omero" default="install" basedir=".">
3   
4        <property name="classpath.file" value="classpath.xml"/>
5        <import file="${classpath.file}"/>
6
7        <target name="compile" depends="generate">
8           <copy todir="${classes.dir}">
9                <fileset dir="${src.dir}">
10                        <include name="loci/formats/readers.txt"/>
11                </fileset>
12           </copy>
13           <copy todir="${testclasses.dir}">
14                <fileset dir="${test.dir}">
15                        <include name="tinyTest.d3d.dv"/>
16                </fileset>
17           </copy>
18           
19           <!-- COPY: from antlib/resources/lifecycle.xml-->
20                <copyResources/>
21
22                <!-- Defaults: override in global.xml files -->
23                <property name="javac.source" value="1.5"/>
24                <property name="javac.target" value="1.5"/>
25                <property name="javac.debug"  value="on"/>
26                <property name="javac.debuglevel" value="lines,vars,source"/>
27                <javac 
28                        fork="yes"
29                        destdir="${classes.dir}"
30                        classpathref="omero.classpath" 
31                        source="${javac.source}"
32                        target="${javac.target}"
33                        debug="${javac.debug}"
34                        debuglevel="${javac.debuglevel}"
35                        sourcepath=""
36                >
37                        <src path="${src.dir}"/>
38                        <include name="**/EnumerationException*"/>
39                        <include name="**/OMEROMetadataStore*"/>
40                        <include name="**/ImportContainer*"/>
41                        <include name="**/ImportLibrary*"/>
42                        <include name="**/ImportFixture*"/>
43                        <include name="**/TinyImportFixture*"/>
44                        <include name="**/loci/**/*"/>
45                        <exclude name="**/loci/**/*Test*"/>
46                </javac>
47                <!-- END COPY-->
48        </target>
49       
50</project>
Note: See TracBrowser for help on using the browser.

Download in other formats:

  • Plain Text
  • Original Format

Trac Powered

Powered by Trac 0.11
By Edgewall Software.

Visit the Trac open source project at
http://trac.edgewall.org/