-
Notifications
You must be signed in to change notification settings - Fork 43
/
jenkins.xml
99 lines (99 loc) · 3.71 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?xml version='1.0' encoding='UTF-8'?>
<project>
<actions/>
<description></description>
<logRotator>
<daysToKeep>60</daysToKeep>
<numToKeep>-1</numToKeep>
<artifactDaysToKeep>-1</artifactDaysToKeep>
<artifactNumToKeep>20</artifactNumToKeep>
</logRotator>
<keepDependencies>false</keepDependencies>
<properties>
<nectar.plugins.rbac.groups.JobProxyGroupContainer>
<groups/>
</nectar.plugins.rbac.groups.JobProxyGroupContainer>
<com.cloudbees.jenkins.plugins.PublicKey/>
<com.cloudbees.plugins.deployer.DeployNowJobProperty>
<oneClickDeploy>false</oneClickDeploy>
<configuration>
<user>(jenkins)</user>
<account>${account}</account>
<deployables/>
</configuration>
</com.cloudbees.plugins.deployer.DeployNowJobProperty>
<com.gmail.ikeike443.PlayAutoTestJobProperty/>
</properties>
<scm class="hudson.plugins.git.GitSCM">
<configVersion>2</configVersion>
<userRemoteConfigs>
<hudson.plugins.git.UserRemoteConfig>
<name></name>
<refspec></refspec>
<url>${repositoryUrl}</url>
</hudson.plugins.git.UserRemoteConfig>
</userRemoteConfigs>
<branches>
<hudson.plugins.git.BranchSpec>
<name>**</name>
</hudson.plugins.git.BranchSpec>
</branches>
<disableSubmodules>false</disableSubmodules>
<recursiveSubmodules>false</recursiveSubmodules>
<doGenerateSubmoduleConfigurations>false</doGenerateSubmoduleConfigurations>
<authorOrCommitter>false</authorOrCommitter>
<clean>false</clean>
<wipeOutWorkspace>false</wipeOutWorkspace>
<pruneBranches>false</pruneBranches>
<remotePoll>false</remotePoll>
<ignoreNotifyCommit>false</ignoreNotifyCommit>
<useShallowClone>false</useShallowClone>
<buildChooser class="hudson.plugins.git.util.DefaultBuildChooser"/>
<gitTool>Default</gitTool>
<submoduleCfg class="list"/>
<relativeTargetDir></relativeTargetDir>
<reference></reference>
<excludedRegions></excludedRegions>
<excludedUsers></excludedUsers>
<gitConfigName></gitConfigName>
<gitConfigEmail></gitConfigEmail>
<skipTag>false</skipTag>
<includedRegions></includedRegions>
<scmName></scmName>
</scm>
<canRoam>true</canRoam>
<disabled>false</disabled>
<blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
<jdk>Oracle JDK 1.7 (latest)</jdk>
<triggers class="vector">
<com.cloudbees.jenkins.forge.ForgePushTrigger>
<spec></spec>
</com.cloudbees.jenkins.forge.ForgePushTrigger>
</triggers>
<concurrentBuild>false</concurrentBuild>
<builders>
<hudson.tasks.Shell>
<command>java -Xms512M -Xmx1536M -Xss1M -XX:+CMSClassUnloadingEnabled -XX:MaxPermSize=384M -jar /opt/sbt/sbt-launch-0.13.0.jar -Dsbt.log.noformat=true clean compile test dist</command>
</hudson.tasks.Shell>
</builders>
<publishers>
<com.cloudbees.plugins.deployer.DeployPublisher>
<deployIfUnstable>false</deployIfUnstable>
<configuration>
<user>(jenkins)</user>
<account>${account}</account>
<deployables>
<com.cloudbees.plugins.deployer.deployables.WildcardMatchingDeployable>
<applicationId>${applicationName}</applicationId>
<applicationEnvironment></applicationEnvironment>
<applicationConfig/>
<apiEndPoint>https://api.cloudbees.com/api</apiEndPoint>
<filePattern>target/universal/*.zip</filePattern>
</com.cloudbees.plugins.deployer.deployables.WildcardMatchingDeployable>
</deployables>
</configuration>
</com.cloudbees.plugins.deployer.DeployPublisher>
</publishers>
<buildWrappers/>
</project>