-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
34 lines (29 loc) · 935 Bytes
/
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
plugins {
id 'java-library'
id 'maven-publish'
alias(libs.plugins.th2.publish)
}
group = 'com.exactpro.th2'
version = release_version
repositories {
mavenCentral()
mavenLocal()
configurations.configureEach {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
resolutionStrategy.cacheDynamicVersionsFor 0, 'seconds'
}
}
dependencies {
implementation("org.slf4j:slf4j-api")
testImplementation 'org.apache.logging.log4j:log4j-slf4j2-impl'
testImplementation 'org.apache.logging.log4j:log4j-core'
testImplementation(platform(libs.junit.bom))
testImplementation(libs.assertj.core)
testImplementation 'org.junit.jupiter:junit-jupiter-api'
testImplementation 'org.junit.jupiter:junit-jupiter-params'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
test {
useJUnitPlatform()
}