-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
46 lines (37 loc) · 1.21 KB
/
build.gradle
File metadata and controls
46 lines (37 loc) · 1.21 KB
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
plugins {
alias(libs.plugins.kotlin.jvm)
alias(libs.plugins.kotlin.kapt)
id("maven-publish")
alias(libs.plugins.th2.publish)
alias(libs.plugins.th2.component)
}
group = 'com.exactpro.th2'
version = release_version
repositories {
mavenCentral()
}
dependencies {
implementation(libs.th2.codec)
implementation "com.fasterxml.jackson.core:jackson-databind"
implementation(libs.kotlin.logging)
compileOnly(libs.auto.service)
kapt(libs.auto.service)
testImplementation(platform(libs.junit.bom))
testImplementation("org.junit.jupiter:junit-jupiter")
testImplementation("org.junit.platform:junit-platform-launcher") {
because 'This artifact will not be added automatically since gradle 9.0. You can read more information here:' +
'https://docs.gradle.org/8.3/userguide/upgrading_version_8.html#test_framework_implementation_dependencies'
}
testImplementation(libs.strikt.core)
testImplementation(libs.mockito.kotlin)
testImplementation "org.jetbrains.kotlin:kotlin-test-junit5"
}
application {
mainClass.set("com.exactpro.th2.codec.MainKt")
}
test {
useJUnitPlatform()
}
dependencyCheck {
suppressionFile='suppressions.xml'
}