-
-
Save mwiewior/9048e573c823680d352d3ed5604d7272 to your computer and use it in GitHub Desktop.
Script to create Scala SBT project directory structure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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