-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathbuild.gradle
55 lines (50 loc) · 1.26 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
allprojects {
group = 'hu.bme.mit.trainbenchmark'
version = '1.0.0-SNAPSHOT'
}
subprojects {
apply plugin: 'java'
sourceCompatibility = 1.8
targetCompatibility = 1.8
task packageSources(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts.archives packageSources
repositories {
mavenCentral()
maven { url "https://repo.eclipse.org/content/groups/acceleo" }
maven { url "https://repo.eclipse.org/content/groups/viatra2" }
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
}
}
buildscript {
repositories {
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath group: 'com.github.jengelman.gradle.plugins', name: 'shadow', version: '2.0.1'
}
}
ext {
commonsExecVersion = '1.3'
commonsIoVersion = '2.5'
commonsLangVersion = '2.4'
emfVersion = '2.10.0-v20140514-1158'
guavaVersion = '23.0'
ingraphVersion = '0.1.0'
janusGraph = '0.2.0'
jenaVersion = '3.4.0'
junitVersion = '4.12'
kryoVersion = '4.0.1'
mySqlConnectorVersion = '5.1.44'
neo4jVersion = '3.3.5'
neo4jApocVersion = '3.3.0.3'
orientDbVersion = '3.0.0m2'
sesameVersion = '2.9.0'
slf4jVersion = '1.7.10'
sqliteVersion = '3.20.0'
tinkerGraphVersion = '3.2.5'
viatraVersion = '1.6.1'
xtextVersion = '2.26.0'
}