Java
YouTube VideoOutline
Here is a basic outline of the steps to follow to complete this example.
- Clone Starter Code from GitHub
git clone <url> java- Install SDKMAN
curl -s "https://get.sdkman.io" | bash- 
Close and Reopen Terminal to load SDK Man 
- 
Install Gradle 
sdk install gradle 7.6- Compile, Run & Test Existing Project
cd java
gradle run
gradle check- 
Confirm that project runs and has no style errors. 
- 
Create New GUI Classes. Continuously commit to Git as changes are made! 
- 
Update Main.java to use new GUI. This is just for testing purposes. 
- 
Add GUI Panel for TheChoco. You’ll do this on your own. 
- 
When complete, use Git to commit and push updated code. 
git add .
git commit -m "Example Complete"
git push- On GitHub, create a release tag and submit URL to Canvas for grading.

