Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mwiewior/9048e573c823680d352d3ed5604d7272 to your computer and use it in GitHub Desktop.
Save mwiewior/9048e573c823680d352d3ed5604d7272 to your computer and use it in GitHub Desktop.
Script to create Scala SBT project directory structure
#!/usr/bin/env bash
touch build.sbt ; touch README.md; mkdir -p project; touch project/plugins.sbt; mkdir -p src/{main/{scala,resources,java},test/{scala,resources,java}}/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment