-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
28 lines (22 loc) · 770 Bytes
/
build.gradle
File metadata and controls
28 lines (22 loc) · 770 Bytes
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
buildscript {
repositories {
mavenCentral()
}
}
apply plugin: 'java'
apply plugin: 'scala'
group = 'ru.sbt.catalog-example'
version = '0.0.1'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile group: 'com.h2database', name: 'h2', version: '1.4.196'
compile group: 'org.apache.ignite', name: 'ignite-core', version: '2.6.0'
compile group: 'org.apache.ignite', name: 'ignite-spark', version: '2.6.0'
compile group: 'org.scala-lang', name: 'scala-library', version: '2.11.0'
compile group: 'org.apache.spark', name: 'spark-core_2.11', version: '2.3.1'
compile group: 'org.apache.spark', name: 'spark-sql_2.11', version: '2.3.1'
testCompile group: 'junit', name: 'junit', version: '4.12'
}