-
Notifications
You must be signed in to change notification settings - Fork 13
/
build.gradle
70 lines (61 loc) · 1.54 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
plugins {
id 'java'
id 'io.franzbecker.gradle-lombok' version '1.14'
id 'com.github.johnrengelman.shadow' version '5.2.0'
}
test {
useJUnitPlatform {
excludeTags 'slow'
includeEngines 'junit-jupiter'
includeEngines 'junit-vintage'
}
ignoreFailures = true
}
repositories {
mavenCentral()
jcenter()
mavenLocal()
}
subprojects {
apply plugin: 'io.franzbecker.gradle-lombok'
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'java-library'
group = 'com.timestored.jdb'
// version = '1.0'
dependencies {
compile 'org.slf4j:slf4j-api:1.7.12'
compile 'com.google.guava:guava:26.0-jre'
compile 'it.unimi.dsi:fastutil:8.4.2'
compileOnly 'org.projectlombok:lombok:1.18.12'
annotationProcessor 'org.projectlombok:lombok:1.18.12'
testCompileOnly 'org.projectlombok:lombok:1.18.12'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.12'
testImplementation 'junit:junit:4.13'
testImplementation 'org.hamcrest:hamcrest-library:2.2'
testRuntimeOnly 'org.junit.vintage:junit-vintage-engine:5.7.0'
}
test {
useJUnitPlatform {
excludeTags 'slow'
includeEngines 'junit-jupiter'
includeEngines 'junit-vintage'
}
ignoreFailures = true
}
repositories {
mavenCentral()
jcenter()
mavenLocal()
}
}
project(':jdb') {
dependencies {
compile project(path: ':genie', configuration: 'shadow')
}
}
project(':jqi') {
dependencies {
implementation project(path: ':genie', configuration: 'shadow')
implementation project(path: ':jdb', configuration: 'shadow')
}
}