-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
106 lines (85 loc) · 3.22 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version "$kotlin_version"
id "org.jetbrains.kotlin.kapt" version "$kotlin_version"
id 'com.palantir.docker' version '0.25.0'
id 'application'
}
group 'com.exactpro.th2'
version release_version
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
tasks.withType(KotlinCompile).configureEach {
kotlinOptions {
jvmTarget = "11"
freeCompilerArgs += "-opt-in=kotlin.RequiresOptIn"
}
}
ext {
ktorVersion = '1.6.8'
}
dependencies {
// BOM with external dependencies restrictions
api platform('com.exactpro.th2:bom:4.4.0')
// the library for interaction with infra API
implementation 'com.exactpro.th2:common:3.44.1'
implementation 'com.exactpro.th2:grpc-crawler-data-processor:0.3.1-update-rpt-grpc-SNAPSHOT'
// Auto service
compileOnly 'com.google.auto.service:auto-service-annotations:1.1.1'
kapt 'com.google.auto.service:auto-service:1.1.1'
// JIRA
implementation group: 'com.atlassian.jira', name: 'jira-rest-java-client-core', version: '5.2.6'
implementation(group: 'io.atlassian.fugue', name: 'fugue', version: '4.7.2') {
because("It is required by JIRA rest client but for some reasons it is not in dependencies for it")
}
implementation('com.atlassian.jwt:jwt-core:3.3.1')
implementation('com.atlassian.jwt:jwt-api:3.3.1')
// Ktor
implementation("io.ktor:ktor-client:$ktorVersion")
implementation("io.ktor:ktor-client-java:$ktorVersion") {
because("the CIO (coroutine base engine) has some issues with SSL")
}
implementation("io.ktor:ktor-client-auth:$ktorVersion")
implementation("io.ktor:ktor-client-logging:$ktorVersion")
implementation("io.ktor:ktor-client-jackson:$ktorVersion")
implementation("org.apache.commons:commons-collections4")
implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310")
// Idiomatic logging for Kotlin. Wraps slf4j
implementation 'io.github.microutils:kotlin-logging:3.0.0'
testImplementation 'org.junit.jupiter:junit-jupiter:5.9.3'
testImplementation 'org.mockito.kotlin:mockito-kotlin:5.0.0'
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.4")
}
test {
useJUnitPlatform()
testLogging {
showStandardStreams = true
}
}
jar {
manifest {
attributes(
'Created-By': "${System.getProperty('java.version')} (${System.getProperty('java.vendor')})",
'Specification-Title': '',
'Specification-Vendor': 'Exactpro Systems LLC',
'Implementation-Title': project.archivesBaseName,
'Implementation-Vendor': 'Exactpro Systems LLC',
'Implementation-Vendor-Id': 'com.exactpro',
'Implementation-Version': project.version
)
}
}
application {
mainClass.set('com.exactpro.th2.dataprocessor.zephyr.BoxMain')
}
applicationName = 'service'
distTar {
archiveFileName.set("${applicationName}.tar")
}
dockerPrepare {
dependsOn distTar
}
docker {
copySpec.from(tarTree("$buildDir/distributions/${applicationName}.tar"))
}