I want to use DHIS-2 in my local system (localhost). i follow steps from here. And all files build in my system by following command
mvn install // on dhis-2 Dir and also /dhis-2/dhis-web
But i can't get this command work mvn jetty:run-war
every time it give error.
Is there any step by step solution fro my problem? I want to run DHIS-2 in my local system using Eclipse. I am completely lost and want some guidelines.
All web modules in DHIS 2 can be started as stand-alone web applications. With web modules I mean all Maven projects under dhis-2/dhis-web/. The modules under dhis-2/ are referred to as service modules. First build the service modules with "mvn install" like you have done. Then navigate to any of the web modules, e.g.:
From there you can execute the jetty plugin with:
Notice that you should not use -war flag anymore.