Changeset c5f04ee
- Timestamp:
- Jun 8, 2011 8:15:53 PM (10 years ago)
- Branches:
- master
- Children:
- 3d18255e
- Parents:
- d57925e8
- Files:
-
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
apps/addressbook/build.xml
rd57925e8 rc5f04ee 52 52 <target name="jar" depends="compile, changes"> 53 53 <jar basedir="${build}" destfile="${dist}/${jar}"> 54 <!-- set if unset --> 55 <property name="workspace.changes" value="" /> 54 56 <manifest> 55 57 <attribute name="Main-Class" value="addressbook.Daemon"/> … … 68 70 <fileset dir="${build}"/> 69 71 </copy> 72 <!-- set if unset --> 73 <property name="workspace.changes.tr" value="" /> 70 74 <war basedir="${dist}/tmp" webxml="web.xml" destfile="${dist}/${war}"> 71 75 <manifest> … … 82 86 <srcfiles dir= "." includes="${build}/**/*.class, web.xml"/> 83 87 </uptodate> 88 <condition property="shouldListChanges" > 89 <and> 90 <not> 91 <isset property="war.uptodate" /> 92 </not> 93 <isset property="mtn.available" /> 94 </and> 95 </condition> 84 96 </target> 85 97 86 <target name="changes" >98 <target name="changes" depends="warUpToDate" if="shouldListChanges" > 87 99 <exec executable="mtn" outputproperty="workspace.changes" errorproperty="mtn.error2" failifexecutionfails="false" > 88 100 <arg value="list" /> -
apps/desktopgui/build.xml
rd57925e8 rc5f04ee 39 39 </target> 40 40 41 <target name=" jar" depends="compile">41 <target name="bundle" > 42 42 <exec executable="sh" osfamily="unix" failifexecutionfails="true" > 43 43 <arg value="./bundle-messages.sh" /> … … 50 50 <arg value="./bundle-messages.sh" /> 51 51 </exec> 52 </target> 53 54 <target name="listChangedFiles" depends="jarUpToDate" if="shouldListChanges" > 52 55 <exec executable="mtn" outputproperty="workspace.changes" errorproperty="mtn.error2" failifexecutionfails="false" > 53 56 <arg value="list" /> … … 61 64 <arg value="," /> 62 65 </exec> 66 </target> 67 68 <target name="jar" depends="compile, bundle, listChangedFiles" unless="jar.uptodate" > 69 <!-- set if unset --> 70 <property name="workspace.changes.tr" value="" /> 63 71 <jar basedir="${build}" destfile="${dist}/${jar}"> 64 72 <manifest> … … 70 78 </jar> 71 79 </target> 80 81 <target name="jarUpToDate"> 82 <uptodate property="jar.uptodate" targetfile="${dist}/${jar}" > 83 <srcfiles dir= "." includes="build/**/*.class" /> 84 </uptodate> 85 <condition property="shouldListChanges" > 86 <and> 87 <not> 88 <isset property="jar.uptodate" /> 89 </not> 90 <isset property="mtn.available" /> 91 </and> 92 </condition> 93 </target> 72 94 73 95 <target name="javadoc"> -
apps/i2psnark/java/build.xml
rd57925e8 rc5f04ee 37 37 </target> 38 38 39 <target name=" jar" depends="builddep, compile, jarUpToDate" unless="jar.uptodate" >39 <target name="listChangedFiles" depends="jarUpToDate" if="shouldListChanges" > 40 40 <exec executable="mtn" outputproperty="workspace.changes" errorproperty="mtn.error2" failifexecutionfails="false" > 41 41 <arg value="list" /> … … 49 49 <arg value="," /> 50 50 </exec> 51 </target> 52 53 <target name="jar" depends="builddep, compile, jarUpToDate, listChangedFiles" unless="jar.uptodate" > 54 <!-- set if unset --> 55 <property name="workspace.changes.tr" value="" /> 51 56 <jar destfile="./build/i2psnark.jar" basedir="./build/obj" includes="**/*.class" excludes="**/I2PSnarkServlet*.class **/messages_*.class"> 52 57 <manifest> … … 64 69 <srcfiles dir= "build/obj" includes="**/*.class" excludes="**/I2PSnarkServlet*.class **/messages_*.class" /> 65 70 </uptodate> 71 <condition property="shouldListChanges" > 72 <and> 73 <not> 74 <isset property="jar.uptodate" /> 75 </not> 76 <not> 77 <isset property="wjar.uptodate" /> 78 </not> 79 <isset property="mtn.available" /> 80 </and> 81 </condition> 66 82 </target> 67 83 … … 73 89 <classes dir="./build/obj" includes="**/I2PSnarkServlet*.class" /> 74 90 --> 75 <target name="war" depends="jar, bundle, warUpToDate" unless="war.uptodate" > 91 <target name="war" depends="jar, bundle, warUpToDate, listChangedFiles" unless="war.uptodate" > 92 <!-- set if unset --> 93 <property name="workspace.changes.tr" value="" /> 76 94 <war destfile="../i2psnark.war" webxml="../web.xml" basedir="../" includes="_icons/*" > 77 95 <!-- include only the web stuff, as of 0.7.12 the router will add i2psnark.jar to the classpath for the war --> -
apps/i2ptunnel/java/build.xml
rd57925e8 rc5f04ee 35 35 </target> 36 36 37 <!-- TODO: Move the web classes from the jar to the war - they are not part of the API 38 - This will require sponge to rewrite some seedless stuff that uses it. 39 --> 40 <target name="jar" depends="builddep, compile, jarUpToDate" unless="jar.uptodate" > 37 <target name="listChangedFiles" depends="jarUpToDate" if="shouldListChanges" > 41 38 <exec executable="mtn" outputproperty="workspace.changes.j" errorproperty="mtn.error2" failifexecutionfails="false" > 42 39 <arg value="list" /> … … 50 47 <arg value="," /> 51 48 </exec> 49 </target> 50 51 52 <!-- TODO: Move the web classes from the jar to the war - they are not part of the API 53 - This will require sponge to rewrite some seedless stuff that uses it. 54 --> 55 <target name="jar" depends="builddep, compile, jarUpToDate, listChangedFiles" unless="jar.uptodate" > 56 <!-- set if unset --> 57 <property name="workspace.changes.j.tr" value="" /> 52 58 <jar destfile="./build/i2ptunnel.jar" basedir="./build/obj" includes="**/*.class"> 53 59 <manifest> … … 65 71 <srcfiles dir= "build/obj" includes="**/*.class" /> 66 72 </uptodate> 73 <condition property="shouldListChanges" > 74 <and> 75 <not> 76 <isset property="jar.uptodate" /> 77 </not> 78 <isset property="mtn.available" /> 79 </and> 80 </condition> 67 81 </target> 68 82 … … 98 112 </target> 99 113 100 <target name=" war" depends="precompilejsp, bundle, warUpToDate" unless="war.uptodate" >114 <target name="listChangedFiles2" depends="warUpToDate" if="shouldListChanges2" > 101 115 <exec executable="mtn" outputproperty="workspace.changes.w" errorproperty="mtn.error2" failifexecutionfails="false" > 102 116 <arg value="list" /> … … 110 124 <arg value="," /> 111 125 </exec> 126 </target> 127 128 <target name="war" depends="precompilejsp, bundle, warUpToDate, listChangedFiles2" unless="war.uptodate" > 129 <!-- set if unset --> 130 <property name="workspace.changes.w.tr" value="" /> 112 131 <war destfile="build/i2ptunnel.war" webxml="../jsp/web-out.xml" 113 132 basedir="../jsp/" excludes="web.xml, web-fragment.xml, web-out.xml, **/*.java, *.jsp"> … … 124 143 <srcfiles dir= "../jsp" excludes="web.xml, web-fragment.xml, **/*.java, *.jsp" /> 125 144 </uptodate> 145 <condition property="shouldListChanges2" > 146 <and> 147 <not> 148 <isset property="war.uptodate" /> 149 </not> 150 <isset property="mtn.available" /> 151 </and> 152 </condition> 126 153 </target> 127 154 -
apps/jetty/build.xml
rd57925e8 rc5f04ee 99 99 </target> 100 100 101 <target name=" jar" depends="compile, jarUpToDate" unless="jar.uptodate" >101 <target name="listChangedFiles" depends="jarUpToDate" if="shouldListChanges" > 102 102 <exec executable="mtn" outputproperty="workspace.changes" errorproperty="mtn.error2" failifexecutionfails="false" > 103 103 <arg value="list" /> … … 111 111 <arg value="," /> 112 112 </exec> 113 </target> 114 115 <target name="jar" depends="compile, jarUpToDate, listChangedFiles" unless="jar.uptodate" > 116 <!-- set if unset --> 117 <property name="workspace.changes.tr" value="" /> 113 118 <jar destfile="./jettylib/org.mortbay.jetty.jar" basedir="./build/obj" includes="**/*.class" update="true" > 114 119 <manifest> … … 124 129 <srcfiles dir= "build/obj" includes="**/*.class" /> 125 130 </uptodate> 131 <condition property="shouldListChanges" > 132 <and> 133 <not> 134 <isset property="jar.uptodate" /> 135 </not> 136 <isset property="mtn.available" /> 137 </and> 138 </condition> 126 139 </target> 127 140 -
apps/ministreaming/java/build.xml
rd57925e8 rc5f04ee 32 32 </target> 33 33 34 <target name=" jar" depends="compile, jarUpToDate" unless="jar.uptodate" >34 <target name="listChangedFiles" depends="jarUpToDate" if="shouldListChanges" > 35 35 <exec executable="mtn" outputproperty="workspace.changes" errorproperty="mtn.error2" failifexecutionfails="false" > 36 36 <arg value="list" /> … … 44 44 <arg value="," /> 45 45 </exec> 46 </target> 47 48 <target name="jar" depends="compile, jarUpToDate, listChangedFiles" unless="jar.uptodate" > 49 <!-- set if unset --> 50 <property name="workspace.changes.tr" value="" /> 46 51 <jar destfile="./build/mstreaming.jar" basedir="./build/obj" includes="**/*.class" > 47 52 <manifest> … … 57 62 <srcfiles dir= "." includes="build/obj/**/*.class" /> 58 63 </uptodate> 64 <condition property="shouldListChanges" > 65 <and> 66 <not> 67 <isset property="jar.uptodate" /> 68 </not> 69 <isset property="mtn.available" /> 70 </and> 71 </condition> 59 72 </target> 60 73 -
apps/routerconsole/java/build.xml
rd57925e8 rc5f04ee 68 68 69 69 <!-- the jar without the latest message classes from the jsps --> 70 <target name=" jar1" depends="compile, jarUpToDate" unless="jar.uptodate" >70 <target name="listChangedFiles" depends="jarUpToDate" if="shouldListChanges" > 71 71 <exec executable="mtn" outputproperty="workspace.changes.j" errorproperty="mtn.error2" failifexecutionfails="false" > 72 72 <arg value="list" /> … … 81 81 <arg value="," /> 82 82 </exec> 83 </target> 84 85 <target name="jar1" depends="compile, jarUpToDate, listChangedFiles" unless="jar.uptodate" > 86 <!-- set if unset --> 87 <property name="workspace.changes.j.tr" value="" /> 83 88 <jar destfile="./build/routerconsole.jar" basedir="./build/obj" includes="**/*.class"> 84 89 <manifest> … … 116 121 <srcfiles dir= "build/obj" includes="**/*.class" /> 117 122 </uptodate> 123 <condition property="shouldListChanges" > 124 <and> 125 <not> 126 <isset property="jar.uptodate" /> 127 </not> 128 <isset property="mtn.available" /> 129 </and> 130 </condition> 118 131 </target> 119 132 … … 135 148 </target> 136 149 137 <!-- does NOT update the message classes, as those go in the jar --> 138 <target name="war" depends="precompilejsp, warUpToDate" unless="war.uptodate" > 150 <target name="listChangedFiles2" depends="warUpToDate" if="shouldListChanges2" > 139 151 <exec executable="mtn" outputproperty="workspace.changes.w" errorproperty="mtn.error2" failifexecutionfails="false" > 140 152 <arg value="list" /> … … 148 160 <arg value="," /> 149 161 </exec> 162 </target> 163 164 <!-- does NOT update the message classes, as those go in the jar --> 165 <target name="war" depends="precompilejsp, warUpToDate, listChangedFiles2" unless="war.uptodate" > 166 <!-- set if unset --> 167 <property name="workspace.changes.w.tr" value="" /> 150 168 <!-- Don't include the css in the war, the main build.xml will copy it to docs/themes/console/ --> 151 169 <war destfile="build/routerconsole.war" webxml="../jsp/web-out.xml" … … 163 181 <srcfiles dir= "../jsp" excludes="web.xml, web-fragment.xml, *.css, **/*.java, *.jsp, *.jsi" /> 164 182 </uptodate> 183 <condition property="shouldListChanges" > 184 <and> 185 <not> 186 <isset property="jar.uptodate" /> 187 </not> 188 <isset property="mtn.available" /> 189 </and> 190 </condition> 165 191 </target> 166 192 -
apps/sam/java/build.xml
rd57925e8 rc5f04ee 46 46 </target> 47 47 48 <target name=" jar" depends="compile, jarUpToDate" unless="jar.uptodate" >48 <target name="listChangedFiles" depends="jarUpToDate" if="shouldListChanges" > 49 49 <exec executable="mtn" outputproperty="workspace.changes" errorproperty="mtn.error2" failifexecutionfails="false" > 50 50 <arg value="list" /> … … 58 58 <arg value="," /> 59 59 </exec> 60 </target> 61 62 <target name="jar" depends="compile, jarUpToDate, listChangedFiles" unless="jar.uptodate" > 63 <!-- set if unset --> 64 <property name="workspace.changes.tr" value="" /> 60 65 <jar destfile="./build/sam.jar" basedir="./build/obj" includes="**/*.class"> 61 66 <manifest> … … 73 78 <srcfiles dir= "build/obj" includes="**/*.class" /> 74 79 </uptodate> 80 <condition property="shouldListChanges" > 81 <and> 82 <not> 83 <isset property="jar.uptodate" /> 84 </not> 85 <isset property="mtn.available" /> 86 </and> 87 </condition> 75 88 </target> 76 89 -
apps/streaming/java/build.xml
rd57925e8 rc5f04ee 45 45 </target> 46 46 47 <target name=" jar" depends="builddep, compile, jarUpToDate" unless="jar.uptodate" >47 <target name="listChangedFiles" depends="jarUpToDate" if="shouldListChanges" > 48 48 <exec executable="mtn" outputproperty="workspace.changes" errorproperty="mtn.error2" failifexecutionfails="false" > 49 49 <arg value="list" /> … … 57 57 <arg value="," /> 58 58 </exec> 59 </target> 60 61 <target name="jar" depends="builddep, compile, jarUpToDate, listChangedFiles" unless="jar.uptodate" > 62 <!-- set if unset --> 63 <property name="workspace.changes.tr" value="" /> 59 64 <jar destfile="./build/streaming.jar" basedir="./build/obj" includes="**/*.class" > 60 65 <manifest> … … 70 75 <srcfiles dir= "." includes="build/obj/**/*.class" /> 71 76 </uptodate> 77 <condition property="shouldListChanges" > 78 <and> 79 <not> 80 <isset property="jar.uptodate" /> 81 </not> 82 <isset property="mtn.available" /> 83 </and> 84 </condition> 72 85 </target> 73 86 -
apps/susidns/src/build.xml
rd57925e8 rc5f04ee 68 68 <target name="all" depends="war"/> 69 69 70 <target name=" war" depends="compile, precompilejsp, bundle, warUpToDate" unless="war.uptodate" >70 <target name="listChangedFiles" depends="warUpToDate" if="shouldListChanges" > 71 71 <exec executable="mtn" outputproperty="workspace.changes" errorproperty="mtn.error2" failifexecutionfails="false" > 72 72 <arg value="list" /> … … 80 80 <arg value="," /> 81 81 </exec> 82 </target> 83 84 <target name="war" depends="compile, precompilejsp, bundle, warUpToDate" unless="war.uptodate" > 85 <!-- set if unset --> 86 <property name="workspace.changes.tr" value="" /> 82 87 <war destfile="${project}.war" webxml="WEB-INF/web-out.xml"> 83 88 <fileset dir="."> … … 103 108 <srcfiles dir= "." includes="WEB-INF/web-out.xml WEB-INF/**/*.class images/*.png css.css index.html WEB-INF/classes/${project}.properties" /> 104 109 </uptodate> 110 <condition property="shouldListChanges" > 111 <and> 112 <not> 113 <isset property="war.uptodate" /> 114 </not> 115 <isset property="mtn.available" /> 116 </and> 117 </condition> 105 118 </target> 106 119 -
apps/susimail/build.xml
rd57925e8 rc5f04ee 23 23 <target name="jar" depends="compile, war" /> 24 24 25 <target name=" war" depends="compile, bundle, warUpToDate" unless="war.uptodate" >25 <target name="listChangedFiles" depends="warUpToDate" if="shouldListChanges" > 26 26 <exec executable="mtn" outputproperty="workspace.changes" errorproperty="mtn.error2" failifexecutionfails="false" > 27 27 <arg value="list" /> … … 35 35 <arg value="," /> 36 36 </exec> 37 </target> 38 39 <target name="war" depends="compile, bundle, warUpToDate, listChangedFiles" unless="war.uptodate" > 40 <!-- set if unset --> 41 <property name="workspace.changes.tr" value="" /> 37 42 <war destfile="susimail.war" webxml="src/WEB-INF/web.xml" 38 43 basedir="src/" excludes="WEB-INF/web.xml LICENSE src/**/*"> … … 49 54 <srcfiles dir= "src" excludes="LICENSE src/**/*" /> 50 55 </uptodate> 56 <condition property="shouldListChanges" > 57 <and> 58 <not> 59 <isset property="war.uptodate" /> 60 </not> 61 <isset property="mtn.available" /> 62 </and> 63 </condition> 51 64 </target> 52 65 -
apps/systray/java/build.xml
rd57925e8 rc5f04ee 24 24 </target> 25 25 26 <target name=" jar" depends="compile, jarUpToDate" unless="jar.uptodate">26 <target name="listChangedFiles" depends="jarUpToDate" if="shouldListChanges" > 27 27 <exec executable="mtn" outputproperty="workspace.changes" errorproperty="mtn.error2" failifexecutionfails="false" > 28 28 <arg value="list" /> … … 36 36 <arg value="," /> 37 37 </exec> 38 </target> 39 40 <target name="jar" depends="compile, jarUpToDate, listChangedFiles" unless="jar.uptodate"> 41 <!-- set if unset --> 42 <property name="workspace.changes.tr" value="" /> 38 43 <jar destfile="./build/systray.jar" basedir="./build/obj" includes="**/*.class"> 39 44 <manifest> … … 51 56 <srcfiles dir= "build/obj" includes="**/*.class" /> 52 57 </uptodate> 58 <condition property="shouldListChanges" > 59 <and> 60 <not> 61 <isset property="jar.uptodate" /> 62 </not> 63 <isset property="mtn.available" /> 64 </and> 65 </condition> 53 66 </target> 54 67 -
build.xml
rd57925e8 rc5f04ee 160 160 </target> 161 161 162 <target name="buildProperties" > 162 <target name="checkForMtn" > 163 <available property="mtn.available" file="_MTN" type="dir" /> 164 </target> 165 166 <target name="getMtnRev" depends="checkForMtn" if="mtn.available" > 163 167 <exec executable="mtn" outputproperty="workspace.version" errorproperty="mtn.error1" failifexecutionfails="false" > 164 168 <arg value="automate" /> 165 169 <arg value="get_base_revision_id" /> 166 170 </exec> 171 </target> 172 173 <target name="buildProperties" depends="getMtnRev" > 174 <!-- default if not set above --> 175 <property name="workspace.version" value="unknown" /> 167 176 <tstamp> 168 177 <format property="build.timestamp" pattern="yyyy-MM-dd HH:mm:ss z" timezone="UTC" locale="en" /> … … 241 250 </target> 242 251 243 <target name="jbigi-list-changes" >252 <target name="jbigi-list-changes" depends="checkForMtn" if="mtn.available" > 244 253 <exec executable="mtn" outputproperty="workspace.changes.jbigi" errorproperty="mtn.error.jbigi" failifexecutionfails="false" > 245 254 <arg value="list" /> … … 256 265 257 266 <target name="jbigi" depends="buildProperties, jbigi-list-changes" > 267 <!-- set if unset --> 268 <property name="workspace.changes.jbigi.tr" value="" /> 258 269 <jar destfile="build/jbigi.jar" whenmanifestonly="fail" > 259 270 <fileset dir="installer/lib/jbigi" includes="*.so *.dll *.jnilib" /> … … 267 278 268 279 <target name="jbigi-windows-only" depends="buildProperties, jbigi-list-changes" > 280 <!-- set if unset --> 281 <property name="workspace.changes.jbigi.tr" value="" /> 269 282 <jar destfile="build/jbigi.jar" whenmanifestonly="fail" > 270 283 <fileset dir="installer/lib/jbigi" includes="*windows*.dll" /> … … 278 291 279 292 <target name="jbigi-linux-only" depends="buildProperties, jbigi-list-changes" > 293 <!-- set if unset --> 294 <property name="workspace.changes.jbigi.tr" value="" /> 280 295 <jar destfile="build/jbigi.jar" whenmanifestonly="fail" > 281 296 <fileset dir="installer/lib/jbigi" includes="*linux*.so" /> … … 784 799 <copy file="build/org.mortbay.jetty.jar" todir="pkg-temp/lib/" /> 785 800 </target> 786 <target name="installer" depends="preppkg, buildProperties"> 787 <taskdef name="izpack" classpath="${basedir}/installer/lib/izpack/standalone-compiler.jar" classname="com.izforge.izpack.ant.IzPackTask" /> 788 <mkdir dir="pkg-temp/installer" /> 801 802 <target name="util-list-changes" depends="checkForMtn" if="mtn.available" > 789 803 <exec executable="mtn" outputproperty="workspace.changes.util" errorproperty="mtn.error.util" failifexecutionfails="false" > 790 804 <arg value="list" /> … … 798 812 <arg value="," /> 799 813 </exec> 814 </target> 815 816 <target name="installer" depends="preppkg, buildProperties, util-list-changes" > 817 <taskdef name="izpack" classpath="${basedir}/installer/lib/izpack/standalone-compiler.jar" classname="com.izforge.izpack.ant.IzPackTask" /> 818 <mkdir dir="pkg-temp/installer" /> 819 <!-- set if unset --> 820 <property name="workspace.changes.util.tr" value="" /> 800 821 <jar destfile="./pkg-temp/installer/copy.jar" basedir="./core/java/build/obj" includes="net/i2p/util/Copy.class net/i2p/util/FileUtil.class"> 801 822 <manifest> -
core/java/build.xml
rd57925e8 rc5f04ee 40 40 </target> 41 41 42 <target name=" jar" depends="compile, jarUpToDate" unless="jar.uptodate" >42 <target name="listChangedFiles" if="mtn.available" > 43 43 <exec executable="mtn" outputproperty="workspace.changes" errorproperty="mtn.error2" failifexecutionfails="false" > 44 44 <arg value="list" /> … … 52 52 <arg value="," /> 53 53 </exec> 54 </target> 55 56 <target name="jar" depends="compile, jarUpToDate, listChangedFiles" unless="jar.uptodate" > 57 <!-- set if unset --> 58 <property name="workspace.changes.tr" value="" /> 54 59 <jar destfile="./build/i2p.jar" basedir="./build/obj" includes="**/*.class" > 55 60 <manifest> -
history.txt
rd57925e8 rc5f04ee 1 1 2011-06-08 zzz 2 * Build: Add standard manifest to jbigi.jar 2 * Build: 3 - Add standard manifest to jbigi.jar 4 - Don't do 'mtn list changed' if not in a workspace or not needed 5 * LogManager: Use DataHelper methods for loading and storing config 3 6 4 7 2011-06-08 kytv -
router/java/build.xml
rd57925e8 rc5f04ee 54 54 </target> 55 55 56 <target name=" jar" depends="compile, jarUpToDate" unless="jar.uptodate" >56 <target name="listChangedFiles" if="mtn.available" > 57 57 <exec executable="mtn" outputproperty="workspace.changes" errorproperty="mtn.error2" failifexecutionfails="false" > 58 58 <arg value="list" /> … … 66 66 <arg value="," /> 67 67 </exec> 68 </target> 69 70 <target name="jar" depends="compile, jarUpToDate, listChangedFiles" unless="jar.uptodate" > 71 <!-- set if unset --> 72 <property name="workspace.changes.tr" value="" /> 68 73 <jar destfile="./build/router.jar" basedir="./build/obj" includes="**/*.class" > 69 74 <manifest> -
router/java/src/net/i2p/router/RouterVersion.java
rd57925e8 rc5f04ee 19 19 public final static String ID = "Monotone"; 20 20 public final static String VERSION = CoreVersion.VERSION; 21 public final static long BUILD = 19;21 public final static long BUILD = 20; 22 22 23 23 /** for example "-test" */
Note: See TracChangeset
for help on using the changeset viewer.