Changeset 1238 for plugins/base2/net.sf.basedb.illumina/trunk/build.xml
- Timestamp:
- Sep 7, 2010, 11:55:05 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/base2/net.sf.basedb.illumina/trunk/build.xml
r1226 r1238 15 15 <property name="name" value="illumina-plugins" /> 16 16 <property name="version" value="1.6pre" /> 17 <property name="minbaseversion" value="2.16" 18 description="Minimal BASE version required by the plug-ins" /> 17 19 <property name="src" location="src" description="Location of source files" /> 18 20 <property name="build" location="build" description="Location of compiled files" /> … … 105 107 source="${javac.source}" 106 108 target="${javac.target}" 109 includeantruntime="false" 107 110 > 108 111 <compilerarg value="${javac.arg}" /> … … 117 120 > 118 121 </jar> 122 </target> 123 124 <target name="update-version"> 125 <echo>Setting version to: ${version}</echo> 126 127 <echo>Illumina.java</echo> 128 <replaceregexp 129 file="${src}/net/sf/basedb/illumina/Illumina.java" 130 match="public static final String VERSION = ".*";" 131 replace="public static final String VERSION = "${version}";" 132 encoding="UTF-8" 133 /> 134 135 <echo>extensions.xml</echo> 136 <replaceregexp 137 file="META-INF/extensions.xml" 138 match="<version>.*</version>" 139 replace="<version>${version}</version>" 140 encoding="UTF-8" 141 /> 142 143 <echo>base-plugins.xml</echo> 144 <replaceregexp 145 file="META-INF/base-plugins.xml" 146 match="<minbaseversion>.*</minbaseversion>" 147 replace="<minbaseversion>${minbaseversion}</minbaseversion>" 148 encoding="UTF-8" 149 flags="g" 150 /> 151 <echo>Don't forget to commit the changes to the subversion repository!</echo> 119 152 </target> 120 153
Note: See TracChangeset
for help on using the changeset viewer.