Skip to content

Instantly share code, notes, and snippets.

@DeveloperMeier
Last active January 31, 2017 20:18
Show Gist options
  • Save DeveloperMeier/7c7e4cc81900e71eeb0344b7f67e5cad to your computer and use it in GitHub Desktop.
Save DeveloperMeier/7c7e4cc81900e71eeb0344b7f67e5cad to your computer and use it in GitHub Desktop.
SBT Project Setup Script
#!/bin/sh
mkdir -p src/{main,test}/{java,resources,scala}
mkdir lib project target
# create an initial build.sbt file
echo "name := \"$1\"
version := \"$2\"
scalaVersion := \"2.10.0\"" > build.sbt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment