-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
35 lines (30 loc) · 1.19 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
* This build file was auto generated by running the Gradle 'init' task
* by 'mbednar' at '9.9.14 8:26' with Gradle 2.0
*
* This generated file contains a sample Scala library project to get you started.
* For more details take a look at the Scala plugin chapter in the Gradle
* user guide available at http://gradle.org/docs/2.0/userguide/scala_plugin.html
*/
// Apply the scala plugin to add support for Scala
apply plugin: 'scala'
apply plugin: 'java'
apply plugin: 'groovy'
apply plugin: 'idea'
apply plugin: 'eclipse'
// In this section you declare where to find the dependencies of your project
repositories {
// Use 'maven central' for resolving your dependencies.
// You can declare any Maven/Ivy/file repository here.
mavenCentral()
}
// In this section you declare the dependencies for your production and test code
dependencies {
// We use Scala 2.11 in our library project
compile 'org.scala-lang:scala-library:2.11.1'
// We use Scalatest for testing our library
testCompile 'junit:junit:4.11'
testCompile 'org.scalatest:scalatest_2.11:2.2.0'
testRuntime 'org.scala-lang.modules:scala-xml_2.11:1.0.2'
compile 'org.codehaus.groovy:groovy-all:2.3.3'
}