|
1 | 1 | plugins { |
2 | | - id 'java-library' |
3 | 2 | id 'maven-publish' |
4 | 3 | id 'java-test-fixtures' |
5 | 4 | id 'org.jetbrains.kotlin.jvm' version '1.8.22' |
6 | | - id 'com.exactpro.th2.gradle.publish' version '0.0.5' |
| 5 | + id 'com.exactpro.th2.gradle.publish' version '0.1.1' |
7 | 6 | } |
8 | 7 |
|
9 | 8 | group = 'com.exactpro.th2' |
10 | 9 | version = release_version |
11 | 10 |
|
12 | 11 | ext { |
13 | | - junitVersion = '5.10.0' |
| 12 | + junitVersion = '5.11.0' |
14 | 13 | } |
15 | 14 |
|
16 | 15 | repositories { |
@@ -44,24 +43,22 @@ configurations { |
44 | 43 | } |
45 | 44 |
|
46 | 45 | dependencies { |
47 | | - api 'com.exactpro.th2:grpc-common:4.5.0-dev' |
48 | | - |
49 | 46 | // TODO: Use this dependency util extract th2 transport into separate library |
50 | | - compileOnly("com.exactpro.th2:common:5.10.0-dev") { |
| 47 | + compileOnly("com.exactpro.th2:common:5.14.0-dev") { |
51 | 48 | because("Transport message classes are used in utilities methods") |
52 | 49 | } |
53 | 50 |
|
54 | 51 | implementation "org.jetbrains:annotations" |
55 | 52 | implementation "org.slf4j:slf4j-api" |
56 | 53 |
|
57 | | - implementation "io.github.microutils:kotlin-logging:3.0.5" |
| 54 | + implementation 'io.github.oshai:kotlin-logging:5.1.4' |
58 | 55 |
|
59 | 56 | implementation "io.prometheus:simpleclient" |
60 | 57 |
|
61 | 58 | testImplementation("com.fasterxml.jackson.core:jackson-databind") { |
62 | 59 | because('provide ability to use object mapper in components') |
63 | 60 | } |
64 | | - testImplementation "org.mockito.kotlin:mockito-kotlin:5.1.0" |
| 61 | + testImplementation "org.mockito.kotlin:mockito-kotlin:5.4.0" |
65 | 62 | testImplementation "org.junit.jupiter:junit-jupiter-api:${junitVersion}" |
66 | 63 | testImplementation "org.junit.jupiter:junit-jupiter-params:${junitVersion}" |
67 | 64 | testFixturesImplementation 'org.jetbrains.kotlin:kotlin-test-junit5' |
|
0 commit comments