

litesoft
@ 676
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
// This Source Code is in the Public Domain per: http://litesoft.org/License.txt if exist "%SVN_HOME%\bin\svn.exe" goto :SVNHOME_OK echo Error: SVN_HOME does not appear to be set copy goto :OutAHere :SVNHOME_OK echo on "%SVN_HOME%\bin\svnversion.exe" -c > Utility\src\com\YourNameHere\Version.data java -DBuild=Utility\src\com\YourNameHere\Version.data -DTemplate=Utility\src\com\YourNameHere\Version.java.template -jar TimeStampVersion.jar Utility\src\com\YourNameHere\Version.java VERSION :OutAHere ============================= <target name="buildInfo" description="Build conf/BuildInfo"> <!--generate build number property (only on the build machine) --> <exec os="Linux" executable="svnversion" outputproperty="svnBuildNumber"> <arg value="-c"/> </exec> <condition property="svnBuildNumber" value="unavailable"> <os family="windows"/> </condition> </target> |