Changeset 690
- Timestamp:
- May 12, 2008, 12:48:15 PM (15 years ago)
- Location:
- extensions/net.sf.basedb.mev/trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/net.sf.basedb.mev/trunk
- Property svn:ignore
-
old new 2 2 build 3 3 mev-launcher*.tar.gz 4 build.properties 5 .project 6 .classpath
-
- Property svn:ignore
-
extensions/net.sf.basedb.mev/trunk/README
r668 r690 19 19 == Installation == 20 20 21 1. Download the mev-launcher-*.tar.gz .21 1. Download the mev-launcher-*.tar.gz file. 22 22 2. Unpack the downloaded file to a directory of your choice. 23 23 3. Copy the mev-launcher.jar file to your BASE extensions directory: … … 25 25 4. Run the 'Extensions -> Manual scan' command if you have disabled automatic 26 26 installation. Otherwise, just wait a bit and the automatic installation will 27 find and install the new extension s.27 find and install the new extension. 28 28 5. Done. The MeV Launcher appears as an action in the "Tools" column when 29 29 viewing bioassay sets of an experiment. … … 46 46 http://baseplugins.thep.lu.se/wiki/net.sf.basedb.mev for instructions. 47 47 48 2. Copy the BASE2Core.jar, BASE2Webclient.jar and BASE2CorePlugins.jar from 48 2. Type `ant download-lib` to automatically download the BASE core JAR file that 49 are neeed for compilation. You can also do this manually by copying the 50 BASE2Core.jar, BASE2Webclient.jar and BASE2CorePlugins.jar from 49 51 the BASE installation directory (<basedir>/www/WEB-INF/lib/) to the 50 52 ./lib/compile directory. … … 54 56 55 57 4. Use 'ant package' to create a downloadable tar.gz package. 58 59 Tip: If you need different values for any of the properties defined in 60 the 'build.xml' file, create a file named 'build.properties' and set 61 the values there. -
extensions/net.sf.basedb.mev/trunk/RELEASE
r666 r690 51 51 52 52 11. Update the version number in build.xml. 53 53 54 54 <property name="version" value="A.B+1" /> 55 56 Commit the change to subversion: 57 58 svn commit -m "Preparing for future release A.B+1" 55 59 56 Commit the change to subversion:57 58 'Preparing for future release A.B+1'.59 -
extensions/net.sf.basedb.mev/trunk/build.xml
r666 r690 5 5 basedir="."> 6 6 7 <!--create this file if you need to override values from properties below --> 8 <property file="build.properties" /> 9 7 10 <!-- variables used --> 8 11 <property name="name" value="mev-launcher" /> … … 20 23 <property name="javac.target" value="1.5" /> 21 24 <property name="javac.encoding" value="ISO-8859-1" /> 25 <property name="depend.jars" value="http://base2.thep.lu.se/base/jars/2.7.0" /> 22 26 23 27 <!-- set up classpath for compiling --> … … 103 107 <available classname="net.sf.basedb.clients.web.extensions.toolbar.FixedButtonFactory" 104 108 classpathref="classpath" property="base2web" /> 105 <fail unless="base2core" message="Can't find BASE2Core.jar in ./lib/compile " />106 <fail unless="base2plugins" message="Can't find BASE2CorePlugins.jar in ./lib/compile " />107 <fail unless="base2web" message="Can't find BASE2Webclient.jar in ./lib/compile " />109 <fail unless="base2core" message="Can't find BASE2Core.jar in ./lib/compile. Try 'ant download-lib' to download the missing file." /> 110 <fail unless="base2plugins" message="Can't find BASE2CorePlugins.jar in ./lib/compile. Try 'ant download-lib' to download the missing file." /> 111 <fail unless="base2web" message="Can't find BASE2Webclient.jar in ./lib/compile. Try 'ant download-lib' to download the missing file." /> 108 112 <echo>Found BASE2Core.jar, BASE2CorePlugins.jar and BASE2Webclient.jar.</echo> 109 113 </target> 114 115 <target 116 name="download-lib" 117 description="Download BASE2Core.jar, BASE2Webclient.jar and BASE2CorePlugins.jar." 118 > 119 <echo> 120 ------------------------------------------------------- 121 NOTE! You may specifiy a different download location by 122 creating the file './build.properties' and 123 setting 'depend.jars' to the URL to download from. 124 ------------------------------------------------------- 125 </echo> 126 <download-lib file="BASE2Core.jar" /> 127 <download-lib file="BASE2CorePlugins.jar" /> 128 <download-lib file="BASE2Webclient.jar" /> 129 </target> 130 131 <macrodef name="download-lib" description="Download BASE core JAR files"> 132 <attribute name="file" /> 133 <sequential> 134 <get 135 dest="lib/compile/@{file}" 136 src="${depend.jars}/@{file}" 137 usetimestamp="true" 138 verbose="true" 139 ignoreerrors="true" 140 /> 141 </sequential> 142 </macrodef> 110 143 </project> -
extensions/net.sf.basedb.mev/trunk/lib/compile
-
Property
svn:ignore
set to
BASE2*.jar
-
Property
svn:ignore
set to
-
extensions/net.sf.basedb.mev/trunk/lib/compile/readme.txt
r666 r690 1 1 NOTE! Before compiling this code, you need to place a 2 copy of the following files in this directory. 2 copy of the following files in this directory. You may 3 issue the command 'ant download-lib' from the project 4 root directory to download those files automatically. 3 5 4 6 * BASE2Core.jar
Note: See TracChangeset
for help on using the changeset viewer.