Changeset 4729 for trunk/build
- Timestamp:
- 01/18/07 11:56:06 (22 months ago)
- Location:
- trunk/build
- Files:
-
- 5 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/build/app.xml
r4691 r4729 118 118 depends="compile" 119 119 description="Run the app in its own JVM."> 120 <echo message="Launching OMERO Client..."/>120 <echo message="Launching OMERO.insight ..."/> 121 121 <java classname="${app.mainclass}" 122 122 classpathref="app.run.classpath" -
trunk/build/build.xml
r4697 r4729 2 2 3 3 <!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 4 * Master build file for the OMERO Client java client.4 * Master build file for the OMERO.insight java client. 5 5 * You can use this file to compile, run, test, and package the application 6 * for distribution. Furthermore, you can generate all other project artifacts,7 * like documentation. Please refer to the usage target for further details.6 * for distribution. Furthermore, you can generate all other project artifacts, 7 * like documentation. Please refer to the usage target for further details. 8 8 * 9 9 * … … 44 44 * not) and are listed by the usage target. 45 45 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~--> 46 <project name="OMERO Client" default="usage" basedir="../">46 <project name="OMERO.insight" default="usage" basedir="../"> 47 47 48 <description>The OMERO Client Java Client Project.</description>48 <description>The OMERO.insight Java Client Project.</description> 49 49 50 50 <!-- The build directory. Every target outputs below this directory. --> … … 53 53 <!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 54 54 * The following properties define the mappings to the artifacts relevant 55 * to the build. These artifacts are contained in the local CVSrepository55 * to the build. These artifacts are contained in the local SVN repository 56 56 * hosting this build file. Here's a short description of contents of the 57 * CVSdirs that are relevant to the build:57 * SVN dirs that are relevant to the build: 58 58 * + root dir: Contains the license file. 59 59 * + build: Contains this master build file and all its children. -
trunk/build/dist.xml
r4697 r4729 3 3 <!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 4 4 * Child build file to create the app deliverables. 5 * This file is only meant to be used as an imported file within the OMEROClient6 * master build file.5 * This file is only meant to be used as an imported file within the 6 * OMERO.insight master build file. 7 7 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~--> 8 8 <project name="dist" default="usage"> … … 53 53 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~--> 54 54 <property name="dist.dir" location="${build.dir}/dist"/> 55 <property name="dist.jar.file" value="omero client.jar"/>56 <property name="dist.bundle.name" value="omero client"/>57 <property name="dist.bundle.version" value="3-M3_Beta_1 5-12-06"/>55 <property name="dist.jar.file" value="omeroinsight.jar"/> 56 <property name="dist.bundle.name" value="omeroinsight"/> 57 <property name="dist.bundle.version" value="3-M3_Beta_17-01-07"/> 58 58 <fileset id="dist.launch.scripts" dir="${base.launch.dir}"> 59 59 <include name="*.sh"/> … … 65 65 <basename property="dist.app.config.dir.name" file="${app.config.dir}"/> 66 66 <property name="dist.osx.icon" 67 location="${base.launch.dir}/osx/omero client.icns"/>67 location="${base.launch.dir}/osx/omeroinsight.icns"/> 68 68 <property name="dist.osx.stub" 69 69 location="${base.launch.dir}/osx/JavaApplicationStub"/> … … 155 155 description="Build and package the app for OS X distribution."> 156 156 <jarbundler dir="${dist.dir}" 157 name="OMERO Client"157 name="OMEROinsight" 158 158 mainclass="${app.mainclass}" 159 159 version="${dist.bundle.version}" 160 infostring="OMERO Client Java Client, ${dist.bundle.version}"161 aboutmenuname="OMERO Client Java Client"160 infostring="OMERO.insight Java Client, ${dist.bundle.version}" 161 aboutmenuname="OMERO.insight Java Client" 162 162 screenmenu="true" 163 163 icon="${dist.osx.icon}" … … 172 172 <zipfileset refid="app.config" prefix="${dist.app.config.dir.name}"/> 173 173 <fileset dir="${dist.dir}" 174 includes="OMERO Client.app/**"174 includes="OMEROinsight.app/**" 175 175 excludes="**/${dist.osx.stub.name}"/> 176 176 <zipfileset file="${dist.osx.stub}" 177 fullpath="OMERO Client.app/Contents/MacOS/${dist.osx.stub.name}"177 fullpath="OMEROinsight.app/Contents/MacOS/${dist.osx.stub.name}" 178 178 filemode="555"/> 179 179 <fileset file="${dist.osx.installfile}"/> -
trunk/build/docs.xml
r4697 r4729 3 3 <!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 4 4 * Child build file to create the project documentation. 5 * This file is only meant to be used as an imported file within the OMEROClient6 * master build file.5 * This file is only meant to be used as an imported file within the 6 * OMERO.insight master build file. 7 7 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~--> 8 8 <project name="docs" default="usage"> … … 93 93 packagenames="org.openmicroscopy.*" 94 94 destdir="${docs.javadoc.dir}" 95 windowtitle="OMERO Client JavaDoc"95 windowtitle="OMERO.insight JavaDoc" 96 96 use="yes" 97 97 author="yes" -
trunk/build/test.xml
r4697 r4729 3 3 <!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 4 4 * Child build file to test the application. 5 * This file is only meant to be used as an imported file within the OMEROClient6 * master build file.5 * This file is only meant to be used as an imported file within the 6 * OMERO.insight master build file. 7 7 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~--> 8 8 <project name="test" default="usage">
