Created
July 7, 2014 00:56
-
-
Save skatsuta/f451e42a16230082a98a to your computer and use it in GitHub Desktop.
Scala 用 build.gradle
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
apply{ | |
plugin 'scala' | |
plugin 'idea' | |
} | |
ext { | |
scalaVersion = '2.11' | |
spec2Version = '2.3.12' | |
} | |
repositories { | |
mavenCentral() | |
} | |
tasks.withType(ScalaCompile) { | |
scalaCompileOptions.useCompileDaemon = false | |
scalaCompileOptions.useAnt = false | |
} | |
dependencies { | |
compile "org.scala-lang:scala-library:$scalaVersion.0" | |
testCompile "org.specs2:specs2_$scalaVersion:$spec2Version" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
プロジェクト構成