-
Notifications
You must be signed in to change notification settings - Fork 0
/
jenkins.xml
83 lines (83 loc) · 2.98 KB
/
jenkins.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?xml version='1.0' encoding='UTF-8'?>
<maven2-moduleset plugin="[email protected]">
<actions/>
<description/>
<keepDependencies>false</keepDependencies>
<properties>
<hudson.plugins.batch__task.BatchTaskProperty plugin="[email protected]">
<tasks>
<hudson.plugins.batch__task.BatchTask>
<name>archive</name>
<script>/srv/tasks/build-archiver.run core/target/urx-sdk-core*.jar android/target/urx-sdk-android*.jar</script>
</hudson.plugins.batch__task.BatchTask>
</tasks>
</hudson.plugins.batch__task.BatchTaskProperty>
</properties>
<scm class="hudson.plugins.git.GitSCM" plugin="[email protected]">
<configVersion>2</configVersion>
<userRemoteConfigs>
<hudson.plugins.git.UserRemoteConfig>
<url>[email protected]:%(repository)s</url>
<credentialsId>%(jenkins.ssh.id)s</credentialsId>
</hudson.plugins.git.UserRemoteConfig>
</userRemoteConfigs>
<branches>
<hudson.plugins.git.BranchSpec>
<name>%(branch.spec)s</name>
</hudson.plugins.git.BranchSpec>
</branches>
<doGenerateSubmoduleConfigurations>false</doGenerateSubmoduleConfigurations>
<browser class="hudson.plugins.git.browser.GithubWeb">
<url>https://github.com/%(repository)s/</url>
</browser>
<submoduleCfg class="list"/>
<extensions>
<hudson.plugins.git.extensions.impl.AuthorInChangelog/>
</extensions>
</scm>
<canRoam>true</canRoam>
<disabled>false</disabled>
<blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
<triggers/>
<concurrentBuild>false</concurrentBuild>
<rootModule>
<groupId>com.urx</groupId>
<artifactId>sdk</artifactId>
</rootModule>
<goals>-U clean deploy</goals>
<mavenName>maven3</mavenName>
<aggregatorStyleBuild>true</aggregatorStyleBuild>
<settings class="jenkins.mvn.DefaultSettingsProvider"/>
<globalSettings class="jenkins.mvn.DefaultGlobalSettingsProvider"/>
<reporters>
<hudson.maven.reporters.MavenMailer>
<recipients>[email protected]</recipients>
<dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
<sendToIndividuals>false</sendToIndividuals>
</hudson.maven.reporters.MavenMailer>
</reporters>
<publishers>
<hudson.plugins.batch__task.BatchTaskInvoker plugin="[email protected]">
<configs>
<hudson.plugins.batch__task.BatchTaskInvoker_-Config>
<project>%(job.name)s</project>
<task>archive</task>
</hudson.plugins.batch__task.BatchTaskInvoker_-Config>
</configs>
<threshold>
<name>SUCCESS</name>
<completeBuild>true</completeBuild>
</threshold>
</hudson.plugins.batch__task.BatchTaskInvoker>
</publishers>
<buildWrappers/>
<prebuilders/>
<postbuilders/>
<runPostStepsIfResult>
<name>FAILURE</name>
<ordinal>2</ordinal>
<color>RED</color>
<completeBuild>true</completeBuild>
</runPostStepsIfResult>
</maven2-moduleset>