********************************************************************************
	         How to build source code and other prerequisite.
********************************************************************************
1. Download the soure code from cdac website.

2. Download jars listed below of ThirdPartyComponents and keep them Shared/Binaries/ThirdPartyComponents
	Jars needed:
		commons-codec-1.3.jar
		commons-collections-3.2.jar
		junit-4.1.jar

3. JDK 8 should be installed on machine

4. Set the environment variables for Java.

	e.g :   JAVA_HOME - C:\Program Files\Java\jdk8u202-b08 (System Environment Variable in case of Windows)
		JAVA_HOME - export JAVA_HOME=/usr/lib/jvm/jdk8u202-b08 (modify '/etc/profile' - in case of LINUX)

5. Append the path value for JAVA in the PATH environment variable.
	e.g :  C:\Program Files\Java\jdk8u202-b08\bin
	       export PATH=/usr/lib/jvm/jdk8u202-b08/bin:$PATH (modify '/etc/profile' - in case of LINUX)

6. Apache Ant should be installed on machine.

7. set the environment variables for Ant.

	E.g.     ANT_HOME -  C:\Program Files\apache-ant-1.9.7 (System Environment Variable in case of Windows)
	         ANT_HOME -  export JAVA_HOME=/usr/java/apache-ant-1.9.7 (modify '/etc/profile' - in case of LINUX)

8. Append the path value for ANT in the PATH environment variable.
	E.g.     C:\Program Files\apache-ant-1.9.7\bin
		 export PATH=/usr/apache-ant-1.9.7/bin:$PATH (modify '/etc/profile' - in case of LINUX)

9. Build code using Ant-Scripts by below command :
	ant -f HL7_J_MASTER_BUILD.xml

NOTE: After Successful build All the Jars get stored in Shared/Binaries/
	  This SDK is developed, build & tested on AdoptOpenJDK 1.8(202).

********************************************************************************
				  FINISH
********************************************************************************
