Advertisement
Guest User

Untitled

a guest
Feb 24th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. #####################################
  2. ## GENERIC PROPERTIES
  3. ######################################
  4.  
  5. javac.path =
  6.  
  7. # Solution path. Required for compile time
  8. solution.path = /media/STORAGE/CBF/project-mine/solution
  9.  
  10.  
  11. # Solution path required for runtime. Defaults to the above value but can be different if we're
  12. # deploying to another place. Should be used in WEB-INF/web.xml in the solution-path parameter
  13. solution.deploy.path = /media/STORAGE/CBF/project-mine/solution
  14.  
  15. #accepted values: tomcat or jboss
  16. server.name = tomcat
  17.  
  18. # Tomcat 6 path:
  19. tomcat.path = /usr/share/tomcat6
  20.  
  21.  
  22.  
  23. # Copy the sample solutions to our project directory? true | false
  24. copy.pentaho.samples = true
  25.  
  26. BASE_URL = put your URL here
  27.  
  28. # Install ctools
  29. ctools.install = true
  30. ctools.branch = stable
  31.  
  32. # Tokens
  33. HIBERNATE.DB = mysql5
  34. HIBERNATE.DRIVER = com.mysql.jdbc.Driver
  35. HIBERNATE.CONN = jdbc:mysql://localhost:3306/hibernate
  36. publish.password = pubpassw0rd
  37. # Used in pac console.xml
  38. war.path = /media/STORAGE/CBF/target-dist/server/webapps/pentaho
  39.  
  40.  
  41. # Java options for the run command
  42. java.opts = -Xmx512m -XX:MaxPermSize=512m -Xrunjdwp:transport=dt_socket,address=8765,server=y,suspend=n
  43.  
  44. #####################################
  45. ## PROJECT DIRECTORIES - The defaults usually work fine
  46. ######################################
  47. pentaho.dir = pentaho-4.5.0/
  48. pentaho.build.dir = target-build/
  49.  
  50. #####################################
  51. ## DEPLOY OPTIONS
  52. ######################################
  53. deploy.mode = rsync
  54. deploy.args = -avz --exclude '.svn/' --exclude '*.log' --exclude 'work/' --exclude 'temp_user/' --exclude 'temp/' --exclude 'tmp/'
  55. deploy.dest.server = user@host:path
  56. deploy.dest.solution = user@host:path
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement