# CPSC210 Personal Project: J-WatchList Author: Benny Leung ## Description J-WatchList is a simple stock market watch list tracker. ## Dependencies External libarary: - [javax.json]("https://docs.oracle.com/javaee/7/api/javax/json/Json.html") Build deps: - gradle ## Compiling from source ### .class In a terminal: ``` git clone https://git.leung.rocks/benny/J-WatchList.git cd J-WatchList gradle clean build ``` Class files are in build/classes, to run with plain java: ``` cd J-WatchList java -cp build/classes/java/main/:build/classes/java/main/ui ui.Main ``` Or run with gradle: ``` cd J-WatchList gradle run ``` To debug: ``` cd J-WatchList gradle debug ``` ## Tags To use tags, you will need ctags with the `-R` option. `Exuberant Ctags` is recommended. Rebuild tags with: ``` gradle tags ```