A Java project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Go to file
asdfasdf e33a1e9ab6
Added json lib
6 years ago
.idea Starter files 6 years ago
data Starter files 6 years ago
lib Added json lib 6 years ago
src Use gradle, like everyone else? 6 years ago
.gitignore Starter files 6 years ago
Project-Provision.iml Use gradle, like everyone else? 6 years ago
README.md asdf 6 years ago
build.gradle Use gradle, like everyone else? 6 years ago
checkstyle.xml Starter files 6 years ago

README.md

CPSC210 Personal Project: J-WatchList

Author: Benny Leung

Description

J-WatchList is a simple stock market watch list tracker.

Dependencies

External libarary:

  • javax.json

Build deps:

  • gradle

Compiling from source

.class

In a terminal:

git clone https://github.students.cs.ubc.ca/cpsc210-2019w-t1/project_h9u2b
cd project_h9u2b
gradle clean build

Class files are in build/classes, to run with plain java:

cd project_h9u2b
java -cp build/classes/java/main/:build/classes/java/main/ui ui.Iface

Or run with gradle:

cd project_h9u2b
gradle run

To debug:

cd project_h9u2b
gradle debug

Tags

To use tags, you will need ctags with the -R option. Exuberant Ctags is recommended. Rebuild tags with:

gradle tags