Skip to content
Snippets Groups Projects
Commit bd08331d authored by felmer's avatar felmer
Browse files

LMS-2786 allow to defined BUILD info file name differently

SVN: 24688
parent a2d4e014
No related branches found
No related tags found
No related merge requests found
...@@ -353,7 +353,10 @@ ...@@ -353,7 +353,10 @@
--> -->
<target name="build-info" description="Creates build information."> <target name="build-info" description="Creates build information.">
<build-info revision="revision.number" version="version.number" clean="clean.flag" /> <build-info revision="revision.number" version="version.number" clean="clean.flag" />
<echo file="${build.info.file}">${version.number}:${revision.number}:${clean.flag}</echo> <condition property="used.build.info.filename" value="${actual.build.info.filename}" else="${build.info.filename}">
<isset property="actual.build.info.filename"/>
</condition>
<echo file="${classes}/${used.build.info.filename}">${version.number}:${revision.number}:${clean.flag}</echo>
</target> </target>
<!-- <!--
......
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
<target name="dist" depends="clean"> <target name="dist" depends="clean">
<antcall target="openbis.make-dist"> <antcall target="openbis.make-dist">
<param name="actual.build.info.filename" value="BUILD-openbis.INFO" />
<param name="variant" value="-standard-technologies" /> <param name="variant" value="-standard-technologies" />
</antcall> </antcall>
<antcall target="screening.screening-api"/> <antcall target="screening.screening-api"/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment