This repository has been archived by the owner on Apr 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.gradle
70 lines (62 loc) · 1.63 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
allprojects {
group = 'ingraph'
version = '0.4.0-SNAPSHOT'
}
ext {
akkaVersion = '2.4.20'
commonsExecVersion = '1.3'
commonsIoVersion = '2.5'
commonsMathVersion = '3.6.1'
gsonVersion = '2.8.5'
guavaVersion = '22.0'
junitVersion = '4.12'
log4jVersion = '1.2.17'
neo4jDriverVersion = '1.6.3'
neo4jVersion = '3.3.5'
neo4jApocVersion = '3.3.0.4'
opencypherVersion = '1.0.0-M10'
pegdownVersion = '1.6.0'
scalaShortVersion = '2.11'
scalaTestVersion = '3.0.5'
scalaVersion = '2.11.12'
sparkVersion = '2.3.0'
slizaaVersion = '9.11.0-SNAPSHOT'
xtextVersion = '2.12.0'
}
subprojects {
apply plugin: 'java'
apply plugin: 'scala'
apply plugin: 'maven-publish'
jar {
from sourceSets.main.allJava
from sourceSets.main.allScala
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
jcenter()
maven { url 'https://repo.eclipse.org/content/groups/acceleo' }
maven { url 'https://repo.eclipse.org/content/groups/viatra2' }
maven { url 'https://docs.inf.mit.bme.hu/ingraph-deps' }
maven { url 'https://dl.bintray.com/ldbc/snb' }
maven { url 'https://jitpack.io' }
}
dependencies {
compile group: 'org.scala-lang', name: 'scala-library', version: scalaVersion
testCompile group: 'org.scalatest', name: "scalatest_$scalaShortVersion", version: scalaTestVersion
testRuntime group: 'org.pegdown', name: 'pegdown', version: pegdownVersion
}
configurations.all { exclude group: 'asm' }
buildscript {
repositories {
jcenter()
}
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
}
}