abhishekkuamr

Untitled

Oct 12th, 2012
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.03 KB | None | 0 0
  1. #********************************************************************
  2. # Bamboo Service Wrapper Properties
  3. #
  4. #********************************************************************
  5.  
  6. wrapper.app.parameter.1=com.atlassian.bamboo.server.Server
  7.  
  8. # The Bamboo port number - this is the port number the Bamboo web server listens on.
  9. #
  10. wrapper.app.parameter.2=8085
  11.  
  12. # The location of the Bamboo web application files
  13. #
  14. wrapper.app.parameter.3=../webapp
  15.  
  16. # The webapp context path. Which must be of form / or /your-context
  17. #
  18. wrapper.app.parameter.4=/
  19.  
  20. # Specify which version of java you use to run Bamboo
  21. #
  22. wrapper.java.command=java
  23.  
  24. wrapper.java.mainclass=org.tanukisoftware.wrapper.WrapperSimpleApp
  25.  
  26. wrapper.java.classpath.1=lib/*.jar
  27. wrapper.java.classpath.2=../lib
  28. # Bamboo classes
  29. wrapper.java.classpath.3=../webapp/WEB-INF/classes
  30. # Bamboo library jars
  31. wrapper.java.classpath.4=../webapp/WEB-INF/lib/commons-lang-*.jar
  32. wrapper.java.classpath.5=../webapp/WEB-INF/lib/servlet-api-2.5*.jar
  33. wrapper.java.classpath.6=../webapp/WEB-INF/lib/jetty-*.jar
  34. wrapper.java.classpath.7=../webapp/WEB-INF/lib/mail-*.jar
  35.  
  36.  
  37. wrapper.java.library.path.1=lib
  38. wrapper.java.additional.1=-server
  39. wrapper.java.additional.2=-Dorg.eclipse.jetty.xml.XmlParser.Validating=false
  40. wrapper.java.additional.3=-Xms256m
  41. wrapper.java.additional.4=-Xmx812m
  42. wrapper.java.additional.5=-XX:MaxPermSize=256m
  43. wrapper.java.additional.6=-Djava.awt.headless=true
  44.  
  45. # Initial Java Heap Size (in MB)
  46. wrapper.java.initmemory=256
  47.  
  48. # Maximum Java Heap Size (in MB)
  49. wrapper.java.maxmemory=812
  50.  
  51. wrapper.working.dir=.
  52.  
  53. #********************************************************************
  54. # JDK 1.5 Additional Parameters for jmx
  55. #
  56. # Uncomment lines "wrapper.java.additional.2" to "wrapper.java.additional.7"
  57. # to enable JMX remove monitoring of the Bamboo Server. ** DONT FORGET
  58. # to define authentication passwords in the conf/jmxremote.password **
  59. #********************************************************************
  60. #wrapper.java.additional.2=-Dcom.sun.management.jmxremote
  61. #wrapper.java.additional.3=-Dcom.sun.management.jmxremote.port=4242
  62. #wrapper.java.additional.4=-Dcom.sun.management.jmxremote.authenticate=true
  63. #wrapper.java.additional.5=-Dcom.sun.management.jmxremote.ssl=false
  64. #wrapper.java.additional.6=-Dcom.sun.management.jmxremote.password.file=conf/jmxremote.password
  65. #wrapper.java.additional.7=-Dwrapper.mbean.name="wrapper:type=Java Service Wrapper Control"
  66.  
  67. #********************************************************************
  68. # Wrapper Logging Properties
  69. #********************************************************************
  70.  
  71. wrapper.console.format=PM
  72. wrapper.console.loglevel=INFO
  73. wrapper.logfile=../logs/bamboo.log
  74. wrapper.logfile.format=LPTM
  75. wrapper.logfile.loglevel=INFO
  76. wrapper.logfile.maxsize=10m
  77. wrapper.logfile.maxfiles=10
  78. wrapper.syslog.loglevel=NONE
  79.  
  80. #********************************************************************
  81. # Wrapper Windows Properties
  82. #********************************************************************
  83. # Title to use when running as a console
  84. wrapper.console.title=Bamboo
  85.  
  86. #********************************************************************
  87. # Wrapper Windows NT/2000/XP Service Properties
  88. #********************************************************************
  89. # WARNING - Do not modify any of these properties when an application
  90. # using this configuration file has been installed as a service.
  91. # Please uninstall the service before modifying this section. The
  92. # service can then be reinstalled.
  93.  
  94. # Name of the service
  95. wrapper.ntservice.name=bamboo
  96.  
  97. # Display name of the service
  98. wrapper.ntservice.displayname=Bamboo build server
  99.  
  100. # Description of the service
  101. wrapper.ntservice.description=A Continuous Integration Server
  102.  
  103. # Service dependencies. Add dependencies as needed starting from 1
  104. wrapper.ntservice.dependency.1=
  105.  
  106. # Mode in which the service is installed. AUTO_START or DEMAND_START
  107. wrapper.ntservice.starttype=AUTO_START
  108.  
  109. # Allow the service to interact with the desktop.
  110. wrapper.ntservice.interactive=false
Advertisement
Add Comment
Please, Sign In to add comment