Created
May 23, 2018 06:54
-
-
Save willis7/cb2e911724cf113e949223cf15d6277d to your computer and use it in GitHub Desktop.
creates the directory structure for a scala project
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 | |
# create an initial build.sbt file | |
echo 'name := "MyProject" | |
version := "1.0" | |
scalaVersion := "2.10.0"' > build.sbt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment