Guest User

Untitled

a guest
Mar 10th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. # -----------------------------------------------------------------------------
  4. # Sets variables to use within script.
  5. # -----------------------------------------------------------------------------
  6.  
  7. DESIRED_HOME_DIR_NAME=7.0.x
  8. FIX_PACK=de/liferay-fix-pack-de-38
  9. INDEX_NAME=tbell
  10. LIFERAY_HOME_PARENT_DIR=C:/
  11. PORTAL_REPO_DIR=C:/liferay-portal-ee/7.0.x
  12.  
  13. # An array of properties as they should appear in portal-ext.properties.
  14. # Include at least database settings.
  15. PORTAL_EXTRA_PROPERTIES=(
  16. "jdbc.default.driverClassName=com.mysql.jdbc.Driver"
  17. "jdbc.default.password=liferay"
  18. "jdbc.default.url=jdbc:mysql://localhost/lportal?characterEncoding=UTF-8&useFastDateParsing=false&useUnicode=true"
  19. "jdbc.default.username=root"
  20. )
  21.  
  22. # An array of modules to deploy from liferay-portal-ee.
  23. # Include the relative path starting from $repo/modules.
  24. DEPLOYABLE_PORTAL_MODULES=(
  25. )
  26.  
  27. # An array of modules to download and deploy.
  28. # Include the URL to the module .jar file.
  29. DEPLOYABLE_URL_MODULES=(
  30. )
Add Comment
Please, Sign In to add comment