Team Members:
- [Martin Liu] - Developer
- [ Natsu Lu ] - Developer
- [Rick Honda] - Developer, Product Owner
- [Haley Tran] - Developer, Scrum Master
- Java 11 or higher - Check with
java --version - Gradle (included via wrapper) - No separate installation needed
# Build the entire project (compile source code and run tests)
./gradlew build
# Or if you prefer using system Gradle
gradle build# Run the Virtual Scroll Access System
./gradlew run
# Alternative using system Gradle
gradle run# clean and test, generating JacocoTestReport
./gradlew clean test jacocoTestReportFound in path: build/reports/jacoco/test/html/index.html
# Clean build artifacts
./gradlew clean
# Compile without running tests
./gradlew compileJava
# Run tests only (without building)
./gradlew test
# Get help on available tasks
./gradlew tasks