Skip to content

Instantly share code, notes, and snippets.

@iamcryptoki
Created November 3, 2020 15:29
Show Gist options
  • Select an option

  • Save iamcryptoki/ab93c7198db983ab89bac0df63a4fc04 to your computer and use it in GitHub Desktop.

Select an option

Save iamcryptoki/ab93c7198db983ab89bac0df63a4fc04 to your computer and use it in GitHub Desktop.
Create an SBT project directory structure.
#!/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