Changeset 1302 for extensions/net.sf.basedb.reggie/trunk
- Timestamp:
- Feb 28, 2011, 12:02:44 PM (11 years ago)
- Location:
- extensions/net.sf.basedb.reggie/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/net.sf.basedb.reggie/trunk/META-INF/extensions.xml
r1282 r1302 7 7 and samples. 8 8 </description> 9 <version>1.0 pre</version>9 <version>1.0-rc1</version> 10 10 <copyright>BASE development team</copyright> 11 11 <email>basedb-users@lists.sourceforge.net</email> -
extensions/net.sf.basedb.reggie/trunk/build.xml
r1301 r1302 10 10 <!-- variables used --> 11 11 <property name="name" value="reggie" /> 12 <property name="version" value="1.0 pre" />12 <property name="version" value="1.0-rc1" /> 13 13 <property name="src" location="src" description="Location of source files" /> 14 14 <property name="build" location="build" description="Location of compiled files" /> … … 171 171 </sequential> 172 172 </macrodef> 173 174 <target name="update-version"> 175 <echo>Setting version to: ${version}</echo> 176 177 <echo>Reggie.java</echo> 178 <replaceregexp 179 file="${src}/net/sf/basedb/reggie/Reggie.java" 180 match="public static final String VERSION = ".*";" 181 replace="public static final String VERSION = "${version}";" 182 encoding="UTF-8" 183 /> 184 185 <echo>extensions.xml</echo> 186 <replaceregexp 187 file="META-INF/extensions.xml" 188 match="<version>.*</version>" 189 replace="<version>${version}</version>" 190 encoding="UTF-8" 191 /> 192 193 <echo>Don't forget to commit the changes to the subversion repository!</echo> 194 </target> 195 173 196 </project> -
extensions/net.sf.basedb.reggie/trunk/src/net/sf/basedb/reggie/Reggie.java
r1288 r1302 24 24 public class Reggie 25 25 { 26 27 /** 28 The current version of this package. 29 */ 30 public static final String VERSION = "1.0-rc1"; 26 31 27 32 /**
Note: See TracChangeset
for help on using the changeset viewer.