Created
November 3, 2020 15:29
-
-
Save iamcryptoki/ab93c7198db983ab89bac0df63a4fc04 to your computer and use it in GitHub Desktop.
Create an 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
| #!/bin/sh | |
| mkdir -p src/{main,test}/{java,resources,scala} | |
| mkdir lib project target | |
| # build.sbt | |
| echo 'name := "<YOUR_PROJECT_NAME>" | |
| version := "1.0" | |
| scalaVersion := "2.13.3"' > build.sbt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment