Skip to content

Instantly share code, notes, and snippets.

@jrglee
Created March 31, 2016 04:39
Show Gist options
  • Save jrglee/1e2c8305b9b8baadaa56b035b4b4e999 to your computer and use it in GitHub Desktop.
Save jrglee/1e2c8305b9b8baadaa56b035b4b4e999 to your computer and use it in GitHub Desktop.
Initial Gradle build for Scala project
plugins {
id "com.github.maiflai.scalatest" version "0.11"
}
apply plugin: 'scala'
repositories {
mavenCentral()
}
dependencies {
compile 'org.scala-lang:scala-library:2.11.8'
testCompile 'org.scalatest:scalatest_2.11:2+'
testRuntime 'org.pegdown:pegdown:1.1.0'
}
task wrapper(type: Wrapper) {
gradleVersion = '2.12'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment