-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
60 lines (48 loc) · 1.51 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
plugins {
id "application"
alias(libs.plugins.kotlin.jvm)
alias(libs.plugins.kotlin.kapt)
alias(libs.plugins.th2.component)
}
group 'com.exactpro.th2'
version release_version
repositories {
mavenCentral()
maven {
name 'Sonatype_releases'
url 'https://s01.oss.sonatype.org/content/repositories/releases/'
}
mavenLocal()
configurations.configureEach {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
resolutionStrategy.cacheDynamicVersionsFor 0, 'seconds'
}
}
dependencies {
implementation(libs.th2.common)
implementation(libs.th2.common.utils)
implementation(libs.th2.netty.bytebuf.utils)
implementation(libs.th2.conn.dirty.tcp.core)
implementation(libs.th2.grpc.lw.data.provider)
implementation 'org.slf4j:slf4j-api'
implementation(libs.kotlin.logging)
implementation 'org.apache.commons:commons-lang3'
implementation 'io.netty:netty-all'
implementation 'com.fasterxml.jackson.core:jackson-core'
implementation 'com.fasterxml.jackson.core:jackson-databind'
implementation 'com.fasterxml.jackson.module:jackson-module-kotlin'
testImplementation(libs.mockito.core)
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit5'
compileOnly(libs.auto.service)
annotationProcessor(libs.auto.service)
kapt(libs.auto.service)
}
test {
useJUnitPlatform()
}
application {
mainClass.set('com.exactpro.th2.conn.dirty.tcp.core.Main')
}
dependencyCheck {
suppressionFile="suppressions.xml"
}