Skip to content

Instantly share code, notes, and snippets.

@willis7
Created May 23, 2018 06:54
Show Gist options
  • Save willis7/cb2e911724cf113e949223cf15d6277d to your computer and use it in GitHub Desktop.
Save willis7/cb2e911724cf113e949223cf15d6277d to your computer and use it in GitHub Desktop.
creates the directory structure for a scala project
#!/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