forked from ninject/Ninject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PushGoogleCode.build
34 lines (30 loc) · 1.78 KB
/
PushGoogleCode.build
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
<?xml version="1.0" encoding="utf-8"?>
<project name="Ninject" default="build">
<property name="path.base" value="${project::get-base-directory()}"/>
<property name="path.tools" value="${path.base}\tools" dynamic="true"/>
<property name="path.tools.gcupload" value="${path.tools}\gcupload\gcupload.exe" dynamic="true"/>
<property name="path.releases" value="${path.base}/dist" dynamic="true"/>
<property name="username" value="[email protected]"/>
<property name="password" value=""/>
<target name="Push">
<foreach item="File" property="filename">
<in>
<items>
<include name="${path.releases}/*.zip" />
<exclude name="${path.releases}/*-source.zip" />
</items>
</in>
<do>
<property name="fn" value="${path::get-file-name-without-extension(filename)}"/>
<property name="projectName" value="${string::substring(fn, 0, string::index-of(fn, '-'))}"/>
<property name="temp" value="${string::substring(fn, string::index-of(fn, '-') + 1, string::get-length(fn) - 1 - string::index-of(fn, '-'))}"/>
<property name="fullversion" value="${string::substring(temp, 0, string::index-of(temp, '-'))}"/>
<property name="version" value="${string::substring(fullversion, 0, string::last-index-of(fullversion, '.'))}"/>
<property name="platform" value="${string::substring(fn, string::last-index-of(fn, 'release-') + 8, string::get-length(fn) - 8 - string::last-index-of(fn, 'release-'))}"/>
<exec program='${path.tools.gcupload}'
commandline='-u:${username} -p:${password} -n:ninject2 -s:${fn} -f:${filename} -l:${projectName},${version},${platform},Type-Archive'
failonerror='false'/>
</do>
</foreach>
</target>
</project>