...
Get the latest version of the legacyui module from the OpenMRS Module Repository
Go to https://addons.openmrs.org/#/show/org.openmrs.module.legacy-ui-module and download the latest version.- Install the module
After the download completes, copy the .omod file (legacyui-{versionNumber}.omod) into the modules directory of your OpenMRS app data folder (e.g. ${HOME}/.OpenMRS/modules) or (Windows + R > %appdata%>OpenMRS>Modules). If you are using Tomcat, copy the .omod file (legacyui-{versionNumber}-SNAPSHOT.omod) into the bundledModules directory (e.g. /webapp/openmrs/WEB-INF/bundledModules) in your Tomcat directory. - Restart OpenMRS
You can do this by either stopping and starting openmrs from tomcat manager page or just restarting tomcat.
Anchor | ||||
---|---|---|---|---|
|
Get the latest version of the legacyui module code
Code Block git clone https://github.com/openmrs/openmrs-module-legacyui.git
- Build the module
Code Block cd openmrs-module-legacyui mvn clean install
- Install the module
After successfully building the legacyui module, you will find it at openmrs-module-legacyui/omod/target/legacyui-{version}-SNAPSHOT.omod.
Take this file and install it, as described in the For Implementers section. - Restart OpenMRS
If you are running jetty in a typical dev environment setup, then kill the already running instance of jetty (CTRL + C) and then run "mvn jetty:run" again.
...