.
├── src
│ ├── main
│ │ ├── java
│ │ │ ├── module-info.java
│ │ │ └── org
│ │ │ └── gsep
│ │ │ ├── select
│ │ │ ├── slash
│ │ │ ├── play
│ │ │ ├── store
│ │ │ └── tutorial
│ │ └── resources
│ └── test
│ ├── java
│ └── resources
├── target
├── pom.xml
└── GSE-Project.iml
- module-info.java and pom.xml are for Maven which is used for dependencies.
- GSE-Project is used for Intellij.
- After the initial merging of all branches, any additional features should be separated into a branch.
- This should be merged with the master branch regularly to ensure smooth integration.
- If multiple people work on a feature, they should use the same feature branch.