forked from JetBrains/CMake-runner-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-hooks.xml
67 lines (56 loc) · 2.47 KB
/
build-hooks.xml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!--
~ Copyright 2000-2015 JetBrains s.r.o.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<!--suppress AntResolveInspection -->
<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}" level="info"/>
<condition property="build.special.name" else="${build.special.name}" value="snapshot">
<not>
<isset property="build.special.name"/>
</not>
</condition>
<condition property="build.number" value="${build.special.name}" else="${build.number}">
<not>
<isset property="build.number"/>
</not>
</condition>
<echo message="Setting version to: ${build.number}" level="info"/>
<!-- 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>
<target name="copy-after-build-artifact">
<property name="fromDir" value="${artifact.output.path}"/>
<property name="toDir" value="${artifact.copy.to.path}"/>
<echo message="copying plugin from ${fromDir} into ${toDir}" level="info"/>
<copy todir="${toDir}">
<fileset dir="${fromDir}"/>
</copy>
</target>
<target name="prepare-commandline-agent-plugin" description="For Tests">
<unzip dest="lib"
src="${TeamCityDistribution}/webapps/ROOT/WEB-INF/plugins/commandLineRunner/agent/commandLineRunner.jar">
<patternset>
<include name="**/*.jar"/>
</patternset>
</unzip>
</target>
</project>