-
Notifications
You must be signed in to change notification settings - Fork 10
Coding style
Alexander edited this page Mar 26, 2015
·
2 revisions
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}