-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
62 lines (49 loc) · 1.56 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
plugins {
id 'java'
id 'groovy'
}
group 'parallel-diff'
version '1.0-SNAPSHOT'
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
repositories {
mavenCentral()
}
sourceSets {
test {
resources {
srcDir 'src/test/resources'
include 'src/main/resources/aus-28-2002'
include 'src/main/resources/aws-28-2002'
include 'src/main/resources/log4j.properties'
}
}
}
jar {
manifest {
attributes(
'Main-Class': 'com.vd.diff.EntryPoint'
)
}
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
duplicatesStrategy = 'include'
}
dependencies {
implementation 'log4j:log4j:1.2.17'
implementation 'commons-logging:commons-logging:1.2'
implementation 'org.slf4j:slf4j-api:1.7.26'
implementation 'org.slf4j:slf4j-log4j12:1.7.26'
implementation 'org.slf4j:slf4j-simple:1.7.26'
implementation 'commons-cli:commons-cli:1.3.1'
implementation 'com.google.guava:guava:27.1-jre'
implementation 'org.apache.hbase:hbase-server:2.1.3'
implementation 'com.google.code.externalsortinginjava:externalsortinginjava:0.1.9'
implementation 'org.apache.commons:commons-lang3:3.8.1'
compileOnly 'org.projectlombok:lombok:1.18.6'
annotationProcessor 'org.projectlombok:lombok:1.18.6'
testImplementation 'junit:junit:4.12'
testImplementation "org.spockframework:spock-core:1.0-groovy-2.4"
testImplementation 'org.codehaus.groovy:groovy-all:2.5.6'
}