-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
47 lines (38 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
46
47
description = 'Spark Hazelcast Connector'
apply plugin: 'scoverage'
apply plugin: 'java'
apply plugin: 'scala'
apply plugin: 'idea'
apply plugin: 'eclipse'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'org.scoverage:gradle-scoverage:1.1.0'
classpath 'net.researchgate:gradle-release:2.3.4'
}
}
ext {
scalaVersion = '2.11'
sparkVersion = '1.6.0'
hazelcastVersion = '3.6'
scoverageVersion = '1.1.1'
}
group 'spark-hazelcast-connector'
version "1.0.0-s_$scalaVersion"
repositories {
mavenCentral()
}
dependencies {
compile "org.scala-lang:scala-library:$scalaVersion"
compile "org.apache.spark:spark-core_$scalaVersion:$sparkVersion"
compile "org.apache.spark:spark-sql_$scalaVersion:$sparkVersion"
compile "org.apache.spark:spark-streaming_$scalaVersion:$sparkVersion"
compile "com.hazelcast:hazelcast:$hazelcastVersion"
compile 'org.apache.commons:commons-lang3:3.4'
testCompile "org.scalatest:scalatest_$scalaVersion:3.0.0-M15"
testCompile 'junit:junit:4.12'
scoverage "org.scoverage:scalac-scoverage-plugin_$scalaVersion:$scoverageVersion"
scoverage "org.scoverage:scalac-scoverage-runtime_$scalaVersion:$scoverageVersion"
}