Changeset 1239
- Timestamp:
- Sep 7, 2010, 12:37:49 PM (12 years ago)
- Location:
- extensions/net.sf.basedb.mev/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/net.sf.basedb.mev/trunk/META-INF/base-plugins.xml
r1190 r1239 3 3 <plugins jarname="%%plugins.jar%%"> 4 4 <pluginclass classname="net.sf.basedb.mev.plugin.TdmsExporterPlugin"> 5 <minbaseversion>2.1 4</minbaseversion>5 <minbaseversion>2.16</minbaseversion> 6 6 <hasconfigurations/> 7 7 </pluginclass> 8 8 <pluginclass classname="net.sf.basedb.mev.plugin.CghExporterPlugin"> 9 <minbaseversion>2.1 4</minbaseversion>9 <minbaseversion>2.16</minbaseversion> 10 10 <hasconfigurations/> 11 11 </pluginclass> 12 12 <pluginclass classname="net.sf.basedb.mev.install.Install"> 13 <minbaseversion>2.1 4</minbaseversion>13 <minbaseversion>2.16</minbaseversion> 14 14 <hasconfigurations/> 15 15 </pluginclass> -
extensions/net.sf.basedb.mev/trunk/META-INF/extensions.xml
r1191 r1239 8 8 it import data from the current bioassay set. 9 9 </description> 10 <version>1.6</version> 11 <url>http://baseplugins.thep.lu.se/wiki/net.sf.basedb.mev</url> 10 <version>1.7pre</version> 11 <copyright>BASE 2 development team</copyright> 12 <email>basedb-users@lists.sourceforge.net</email> 13 <url>http://baseplugins.thep.lu.se/wiki/net.sf.basedb.illumina</url> 12 14 </about> 13 15 <extension -
extensions/net.sf.basedb.mev/trunk/RELEASE
r1191 r1239 13 13 2. Update the version number. 14 14 15 * In build.xml: <property name="version" value="A.B" /> 16 * In META-INF/extensions.xml: <version>A.B</version> 17 * In src/server/net/sf/basedb/mev/MeV.java: public ... String VERSION = "A.B" 15 In build.xml: 16 <property name="version" value="A.B" /> 17 <property name="minbaseversion" value="X.Y" /> 18 19 Run `ant update-version`. This should put the version 20 numbers in a lot of files, including, Mev.java, 21 META-INF/extensions.xml and META-INF/base-plugins.xml. 22 23 Check (and update if needed) the README file and 24 and the wiki pages (see also step 8 and 9 below): 25 26 http://baseplugins.thep.lu.se/wiki/net.sf.basedb.mev 27 http://baseplugins.thep.lu.se/wiki/PluginDownload 18 28 19 29 3. Make sure that the code compiles and can be packaged. … … 54 64 any remaining tickets to the newly create milestone. 55 65 56 11. Update the version number in build.xml.57 58 <property name="version" value="A.B+1pre" />59 60 Commit the change tosubversion:61 66 11. Update the version numbers. 67 68 In build.xml: <property name="version" value="A.(B+1)pre" /> 69 Run `ant update-version` and commit the changes to 70 subversion: 71 62 72 svn commit -m "Preparing for future release A.B+1" 63 73 -
extensions/net.sf.basedb.mev/trunk/build.xml
r1228 r1239 11 11 <property name="name" value="mev-launcher" /> 12 12 <property name="version" value="1.7pre" /> 13 <property name="minbaseversion" value="2.16" 14 description="Minimal BASE version required by the plug-ins" /> 13 15 <property name="src" location="src" description="Location of source files" /> 14 16 <property name="build" location="build" description="Location of compiled files" /> … … 158 160 </javac> 159 161 </target> 162 163 <target name="update-version"> 164 <echo>Setting version to: ${version}</echo> 165 166 <echo>Mev.java</echo> 167 <replaceregexp 168 file="${src}/server/net/sf/basedb/mev/Mev.java" 169 match="public static final String VERSION = ".*";" 170 replace="public static final String VERSION = "${version}";" 171 encoding="UTF-8" 172 /> 173 174 <echo>extensions.xml</echo> 175 <replaceregexp 176 file="META-INF/extensions.xml" 177 match="<version>.*</version>" 178 replace="<version>${version}</version>" 179 encoding="UTF-8" 180 /> 181 182 <echo>base-plugins.xml</echo> 183 <replaceregexp 184 file="META-INF/base-plugins.xml" 185 match="<minbaseversion>.*</minbaseversion>" 186 replace="<minbaseversion>${minbaseversion}</minbaseversion>" 187 encoding="UTF-8" 188 flags="g" 189 /> 190 <echo>Don't forget to commit the changes to the subversion repository!</echo> 191 </target> 192 160 193 <target 161 194 name="checkjar" -
extensions/net.sf.basedb.mev/trunk/src/server/net/sf/basedb/mev/Mev.java
r1191 r1239 12 12 The current version of this plug-in package. 13 13 */ 14 public static final String VERSION = "1. 6";14 public static final String VERSION = "1.7pre"; 15 15 16 16 /**
Note: See TracChangeset
for help on using the changeset viewer.