-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
45 lines (34 loc) · 1.23 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
36
37
38
39
40
41
42
43
44
45
group "org.mentha.tools"
version "1.0.0-SNAPSHOT"
apply plugin: "idea"
apply plugin: "java"
apply plugin: "scala"
apply plugin: "maven"
sourceCompatibility = 1.8
ext {
scalaLibVersion = "2.12"
scalaVersion = "${scalaLibVersion}.3"
zincScalaVersion = "2.10.6" // zinc is build with scala 2.10
slf4j = "1.7.13"
akkaVersion = "2.5.4"
}
repositories {
mavenCentral()
}
dependencies {
zinc "com.typesafe.zinc:zinc:0.3.15"
zinc "org.scala-lang:scala-library:${zincScalaVersion}"
zinc "org.scala-lang:scala-reflect:${zincScalaVersion}"
zinc "org.scala-lang:scala-compiler:${zincScalaVersion}"
compile "org.scala-lang:scala-library:${scalaVersion}"
compile "org.scala-lang:scala-reflect:${scalaVersion}"
compile "com.typesafe.akka:akka-persistence_${scalaLibVersion}:${akkaVersion}"
compile "org.apache.commons:commons-lang3:3.5"
compile "commons-io:commons-io:2.5"
compile "org.slf4j:slf4j-api:${slf4j}"
compile "org.slf4j:slf4j-log4j12:${slf4j}"
compile "org.eclipse.jgit:org.eclipse.jgit:4.8.0.201706111038-r"
testCompile "junit:junit:4.12"
testCompile "org.scalatest:scalatest_${scalaLibVersion}:3.0.1"
testCompile "com.typesafe.play:play-json_${scalaLibVersion}:2.6.3"
}