Advertisement
Guest User

config.xml

a guest
Aug 29th, 2013
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <module configVersion="1.2">
  4.  
  5. <!-- Module Properties -->
  6. <id>${project.parent.artifactId}</id>
  7. <name>${project.parent.name}</name>
  8. <version>${project.parent.version}</version>
  9. <package>${project.parent.groupId}.${project.parent.artifactId}</package>
  10. <author>Maurya</author>
  11. <description>
  12. ${project.parent.description}
  13. </description>
  14. <updateURL>https://modules.openmrs.org/modules/download/${project.parent.artifactId}/update.rdf</updateURL>
  15. <require_version>${openMRSVersion}</require_version>
  16. <!-- / Module Properties -->
  17.  
  18.  
  19. <!-- Required Modules -->
  20. <require_modules>
  21.  
  22. <require_module version="0.8-SNAPSHOT">
  23. org.openmrs.module.reporting
  24. </require_module>
  25.  
  26. </require_modules>
  27. <!-- / Required Modules -->
  28.  
  29. <!-- Module Activator -->
  30. <activator>${project.parent.groupId}.${project.parent.artifactId}.IntegrationActivator</activator>
  31.  
  32.  
  33. <!-- Adds link to admin page -->
  34. <extension>
  35. <point>org.openmrs.admin.list</point>
  36. <class>${project.parent.groupId}.${project.parent.artifactId}.extension.html.AdminList</class>
  37. </extension>
  38.  
  39. <privilege>
  40. <name>Manage Integration Servers</name>
  41. <description>Allows the user to manage Integration module Servers</description>
  42. </privilege>
  43.  
  44. <!-- Maps hibernate file's, if present -->
  45. <mappingFiles>
  46.  
  47. <!-- Integration_ns.hbm.xml -->
  48. IntegrationServer.hbm.xml
  49. <!--
  50.  
  51.  
  52.  
  53.  
  54. -->
  55. CategoryCombo.hbm.xml
  56. CategoryOption.hbm.xml
  57. OptionSet.hbm.xml
  58. Option.hbm.xml
  59. ReportTemplate.hbm.xml
  60. DataElement.hbm.xml
  61. DataValueTemplate.hbm.xml
  62. OrgUnit.hbm.xml
  63.  
  64. </mappingFiles>
  65.  
  66. <!-- Internationalization -->
  67. <!-- All message codes should start with ${project.parent.artifactId}. -->
  68. <messages>
  69. <lang>en</lang>
  70. <file>messages.properties</file>
  71. </messages>
  72. <messages>
  73. <lang>fr</lang>
  74. <file>messages_fr.properties</file>
  75. </messages>
  76. <messages>
  77. <lang>es</lang>
  78. <file>messages_es.properties</file>
  79. </messages>
  80. <!-- /Internationalization -->
  81.  
  82. </module>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement