view build/ant.build.xml @ 106:6599b53f54a5

add missing library
author Evgeniy.Koshkin@unit-519.Labs.IntelliJ.Net
date Tue, 17 May 2016 11:56:29 +0300
parents c36d3305ed62
children
line wrap: on
line source
<project name="build hooks" default="replace-tokens-in-teamcity-plugin-xml" basedir=".">


  <target name="replace-tokens-in-teamcity-plugin-xml">
    <property name="home" value="${artifact.output.path}"/>

    <echo message="replacing tokens in teamcity-plugin.xml file under ${home}"/>

    <tstamp>
      <format property="current.time" pattern="yyyyMMddHHmm"/>
    </tstamp>
    <condition property="build.number" value="SNAPSHOT-${current.time}" else="${build.number}">
      <not>
        <isset property="build.number"/>
      </not>
    </condition>

    <echo message="Setting version to: ${build.number}"/>
    <!-- update all references in teamcity-plugin.xml files -->
    <replace dir="${home}" summary="true">
      <include name="**/teamcity-plugin.xml"/>

      <replacefilter token="@Plugin_Version@" value="${build.number}"/>
      <replacefilter token="@Plugin_Vendor@" value="JetBrains, s.r.o."/>
      <replacefilter token="@Plugin_Vendor_Url@" value="http://www.jetbrains.com"/>
    </replace>
  </target>

</project>