Advertisement
mugs

impex-build.properties to load KFS demo data

May 6th, 2015
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Note, all paths are relative to the impex tool directory within the distribution
  2. distribution.dir=${basedir}/../..
  3.  
  4. torque.project = kfs
  5.  
  6. torque.schema.dir=${distribution.dir}/rice
  7. torque.sql.dir=${torque.schema.dir}/sql
  8. torque.output.dir=${torque.schema.dir}/sql
  9.  
  10. # then, overlay a KFS/KC/KS database on the base rice database, use the parameters below
  11. torque.schema.dir.2=${distribution.dir}/demo
  12. torque.sql.dir.2=${torque.schema.dir.2}/sql
  13. torque.output.dir.2=${torque.schema.dir.2}/sql
  14.  
  15.  
  16. #
  17. # Modify these to match the database into which you are going to import
  18. #
  19.  
  20. import.torque.database = oracle
  21. import.torque.database.driver = oracle.jdbc.OracleDriver
  22. import.torque.database.url = jdbc:oracle:thin:@localhost:1521:XE
  23. import.torque.database.user=kuldev
  24. import.torque.database.schema=kuldev
  25. import.torque.database.password=kuldev
  26.  
  27. post.import.liquibase.project=kfs
  28. # after data import, have impex run liquibase scripts in this directory
  29. # the scripts will be run in file name order within this directory
  30. post.import.liquibase.xml.directory=${distribution.dir}/../rice-data
  31.  
  32. # Set this to the contexts you want to execute - non matching changeSets will not be run
  33. # If left blank, all contexts will be run
  34. post.import.liquibase.contexts=demo
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement