
Download and extract the dowser.zip file (from http://www.cc.gatech.edu/projects/dowser/dowser.zip)

* EASY INSTALL
1. run the following command in the extracted directory 'project'
	sudo ./make-all
   Press 'Y' and hit <Enter> when prompted during package install
2. run GUI using following command in the extracted directory 'project'
	./run


----------------------------------------------
OR
----------------------------------------------


* STEPS FOR BUILDING DOWSER

1. You need to install following packages first
	a. graphviz
	b. g++
	c. sun-java6-jdk
	** WordNet need not be installed as it is automatically copied to your local folder during make
2. After installing above packages, run 'make' in the 'classExtractor-src-1.0' folder
	(Provide password for sudo if prompted)
3. You should get an executable file classExtractor in the 'classExtractor-src-1.0' folder


* STEPS FOR BUILDING COGITO + DOWSER GUI (AFTER BUILDING DOWSER)
1. You need to install following packages first
	a. imagemagick
	b. plotutils
2. Run the script build_gui in the UCE_Java folder
3. Run GUI using following command

	java -cp .:./antlr-runtime-3.2.jar:./jcalendar-1.3.3.jar:./jaws-bin.jar dowser.Dowser_Main -Dwordnet.dir=<wordnet dict directory path> -Dstatic_diag.script=<static diagram script path> -Dseq_diag.script=<sequence diagram script path> dowser.Dowser_Main

	** If you do not specify the value for any of the property values, default paths will be used. You need to specify these ONLY if you change the directory structure
	** i.e. you can use following command assumming default dir structure
	java -cp .:./antlr-runtime-3.2.jar:./jcalendar-1.3.3.jar:./jaws-bin.jar dowser.Dowser_Main

