-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathselenium-hub.xml
57 lines (49 loc) · 2.68 KB
/
selenium-hub.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
<!--
The MIT License
Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-->
<!--
Windows service definition for Jenkins
To uninstall, run "jenkins.exe stop" to stop the service, then "jenkins.exe uninstall" to uninstall the service.
Both commands don't produce any output if the execution is successful.
http://pcsupport.about.com/od/windows7/ht/auto-logon-windows-7.htm
http://channel9.msdn.com/Blogs/coolstuff/Tip-Auto-Login-Your-Windows-7-User-Account
http://www.thecoderanger.com/how-to-setup-auto-login-for-a-domain-account-on-windows-7/
-->
<service>
<id>selenium-node</id>
<name>selenium-node</name>
<description>This "Windows service" runs Selenium node.</description>
<env name="JENKINS_HOME" value="%BASE%"/>
<env name="APP_VERSION" value="2.43.1"/>
<env name="HUB_HTTP_PORT" value="4444"/>
<env name="LAUNCHER_OPTS" value="-XX:MaxPermSize=1028M -Xmn128M"/>
<!--
if you'd like to run Jenkins with a specific version of Java, specify a full path to java.exe.
The following value assumes that you have java in your PATH.
-->
<executable>c:\Progra~1\java\jdk1.7.0_67\bin\java.exe</executable>
<arguments>%LAUNCHER_OPTS% -classpath C:/selenium-dotnet/log4j-1.2.17.jar;C:/selenium-dotnet/selenium-server-standalone-%APP_VERSION%.jar -Dlog4j.configuration=log4j.properties org.openqa.grid.selenium.GridLauncher -port %HUB_HTTP_PORT% -role hub -ensureCleanSession true -trustAllSSLCertificates true -maxSession 20 -newSessionWaitTimeout 600000</arguments>
<!--
interactive flag causes the empty black Java window to be displayed.
I'm still debugging this.
<interactive />
-->
<logmode>rotate</logmode>
<onfailure action="restart" />
</service>