-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
48 lines (36 loc) · 1.17 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
plugins {
id 'application'
id "com.github.johnrengelman.shadow" version "7.1.2"
}
group 'com.the-qa-company'
version '1.4.0'
repositories {
// use dev HDT
mavenLocal()
mavenCentral()
}
application {
mainClass = 'com.the_qa_company.wikidatachanges.WikidataChangesFetcher'
}
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.24'
annotationProcessor 'org.projectlombok:lombok:1.18.24'
testCompileOnly 'org.projectlombok:lombok:1.18.24'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.24'
implementation("commons-cli:commons-cli:1.5.0")
implementation("commons-io:commons-io:2.11.0")
implementation("com.fasterxml.jackson.core:jackson-core:2.13.3")
implementation("com.fasterxml.jackson.core:jackson-annotations:2.13.3")
implementation("com.fasterxml.jackson.core:jackson-databind:2.13.3")
implementation 'com.the-qa-company:qendpoint-backend:1.16.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
}
test {
useJUnitPlatform()
}
tasks.register("printVersion") {
doLast {
println(rootProject.version)
}
}