Skip to content

Concordia University - SOEN 6441 - Advanced Programming Practices

License

Notifications You must be signed in to change notification settings

OmniaAlam/soen6441

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Risk Game

  • Concordia University
  • SOEN 6441 - Advanced Programming Practices, Fall 2023
  • Group Project: W10

Table of Content

Group Members

  • Omnia Alam (AlamOmnia)
  • Yajing Liu (YajingLiu2357)
  • Sherwyn D'souza (sherwyn11)
  • Darlene Nazareth (Darlene-Naz)
  • Duy Thanh Phan (thanhpd)
  • Md Tazin Morshed Shad (TazinMorshed)

Instructions

Development Environment Prerequisite

  • JDK 11
  • Maven

Development Commands

All commands are run inside the project folder.

To build and run the project

// This command will build the project and run the unit tests
// The build and report artifacts are located inside the `target` folder

$ mvn -B package

// Run the executable file via Maven
$ mvn exec:java

To run unit tests

$ mvn test

To generate Javadoc documentation

// The Javadoc folder for the tested code is located at `docs/apidocs/`
// The Javadoc folder for the test code is located at `docs/apidocs/testapidocs`
// Open the index.html file inside the output folder to see the document

$ mvn javadoc:javadoc javadoc:test-javadoc

The doclint option is enabled by default via maven-javadoc-plugin. See

Log file

A log file is generated for the game, it is placed at src/main/resources/logs/log.txt.

Code formatting

For VSCode Editor

Install EditorConfig for VS Code on your editor. You should enable the Enable On Save option. Once they are done, VSCode will read .editorconfig file and format accordingly.

For IntelliJ IDEA

.editorconfig support is already built-in for IntelliJ IDEA.

CLI usage

The project uses Spotless for code layout formatting.

// To check the violations on code formatting
$ mvn spotless:check

// To apply code formatting on the whole project
$ mvn spotless:apply

Main Dependencies

  • Package manager: Maven
  • Unit testing framework: JUnit
  • Code formatting: Spotless, Google Java Format, Editorconfig

About

Concordia University - SOEN 6441 - Advanced Programming Practices

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%