-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
77 lines (63 loc) · 2.15 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
plugins {
id "application"
id "com.exactpro.th2.gradle.component" version "0.1.6"
}
group = 'com.exactpro.th2'
version = release_version
sourceCompatibility = 11
targetCompatibility = 11
ext {
cradleVersion = '5.4.4-dev'
}
repositories {
mavenCentral()
maven {
name 'Sonatype_snapshots'
url 'https://s01.oss.sonatype.org/content/repositories/snapshots/'
}
maven {
name 'Sonatype_releases'
url 'https://s01.oss.sonatype.org/content/repositories/releases/'
}
mavenLocal()
configurations.configureEach {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
resolutionStrategy.cacheDynamicVersionsFor 0, 'seconds'
}
}
javadoc {
options.addStringOption('Xdoclint:none', '-quiet')
}
dependencies {
implementation('com.exactpro.th2:common:5.14.0-dev') {
exclude group: 'com.exactpro.th2', module: 'cradle-core'
exclude group: 'com.exactpro.th2', module: 'cradle-cassandra'
}
implementation("com.exactpro.th2:common-utils:2.3.0-dev") {
because("executor service utils is used")
}
implementation 'com.exactpro.th2:task-utils:0.1.2'
implementation "com.exactpro.th2:cradle-core:$cradleVersion"
implementation "com.exactpro.th2:cradle-cassandra:$cradleVersion"
// FIXME: Added as API dependency to common com.exactpro.th2.common.event.Event.toProto(...) throws `JsonProcessingException`
implementation 'com.fasterxml.jackson.core:jackson-core'
implementation 'io.prometheus:simpleclient'
implementation "org.slf4j:slf4j-api"
implementation "org.jetbrains:annotations"
implementation 'com.fasterxml.jackson.core:jackson-databind'
implementation('com.fasterxml.jackson.datatype:jackson-datatype-jsr310') {
because("Error collector serialise Instant values")
}
testImplementation 'org.apache.commons:commons-lang3'
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.3'
testImplementation 'org.mockito:mockito-junit-jupiter:5.14.2'
}
application {
mainClassName 'com.exactpro.th2.estore.EventStore'
}
test {
useJUnitPlatform()
}
dependencyCheck {
suppressionFile='suppressions.xml'
}