Skip to content
Alexander edited this page Mar 26, 2015 · 2 revisions

Directory structure

Maven/SBT standard directory structure:

*Project root*
├── src
│   ├── main
│   │   ├── java
│   │   ├── resources
│   │   └── scala  <-- All (non-testing) code goes here
│   └── test
│       ├── java
│       ├── resources <-- All test resources (e.g. benchmark TPTP problems)
│       └── scala <-- All testing code goes here
└── ... (further dirs)

Created by, e.g., mkdir -p src/{main,test}/{scala,resources,java}

Clone this wiki locally