This workspace contains two Java assignments. Each assignment has its own pom.xml, source code, and tests.
Structure
assignment1/— contains a small producer/consumer example under packagevisa.com.assignment2/— contains a CSV reading and sales analysis example under packageintuit.com.
Quick commands (PowerShell)
Run tests for assignment1:
cd assignment1; mvn testRun tests for assignment2:
cd assignment2; mvn testRun tests for both (from workspace root):
cd D:\Intuit; mvn -pl assignment1,assignment2 testNotes
- Requires Java and Maven installed and on
PATH. - Tests and build artifacts are written under each assignment's
target/directory.