Skip to content

Latest commit

 

History

History
61 lines (37 loc) · 1.35 KB

README.md

File metadata and controls

61 lines (37 loc) · 1.35 KB

Bomberman

McGill ECSE 321 - Intro. to Software Engineering, Fall 2014.

A simple Bomberman implementation by Group 3.

Licensed under MIT.

Group 3

Building

Tools

  • Java 7 JKD
  • Maven 3
  • Recommended IDE: Intellij IDEA Community Edition

Commands

Build JAR and execute:

mvn

Build JAR:

mnv install

Execute JAR:

mvn exec:java

Delete all generated files:

mvn clean

Commit guidelines

  • Don't commit if it doesn't compile
  • Commit any changes that break features or otherwise reduce functionality to a new branch
  • First 100 characters of the commit message should be a short summary of changes
  • Format code before commiting
  • Document all code and update docs where needed

Formatting guidelines

On Windows, please change your git config using

git config --global core.autocrlf true

to enable normalized line endings.

Use 4 spaces, not tabs.

We'll borrow (with permission) the formatting settings from another project