Created
March 31, 2016 04:39
-
-
Save jrglee/1e2c8305b9b8baadaa56b035b4b4e999 to your computer and use it in GitHub Desktop.
Initial Gradle build for Scala project
This file contains 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
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