-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathextensions.gradle
81 lines (69 loc) · 2.66 KB
/
extensions.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
78
79
80
81
ext {
ctsdkv1 = [
client: 'com.commercetools.sdk.jvm.core:commercetools-java-client:2.16.0',
models: 'com.commercetools.sdk.jvm.core:commercetools-models:2.16.0',
convenience: 'com.commercetools.sdk.jvm.core:commercetools-convenience:2.16.0',
version: {
strictly '[1.62.0,)'
prefer '2.16.0'
}
]
commons = [
text: 'org.apache.commons:commons-text:1.13.0',
lang3: 'org.apache.commons:commons-lang3:3.17.0',
io: 'commons-io:commons-io:2.18.0',
io_version: {
strictly '[2.8.0,)'
prefer '2.16.1'
}
]
slf4j = [
api: 'org.slf4j:slf4j-api:2.0.17',
]
logback = [
classic: 'ch.qos.logback:logback-classic:1.3.15',
]
jackson_core = [
annotations: 'com.fasterxml.jackson.core:jackson-annotations:2.18.3',
databind: 'com.fasterxml.jackson.core:jackson-databind:2.18.3',
core: 'com.fasterxml.jackson.core:jackson-core:2.18.3',
datatype: 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.18.3',
]
google = [
findbugs: 'com.google.code.findbugs:jsr305:3.0.2',
gson: 'com.google.code.gson:gson:2.12.1',
]
graphql = [
java: 'com.graphql-java:graphql-java:19.11'
]
awaitility = [
awaitility: 'org.awaitility:awaitility:4.3.0',
]
javax = [
validation: 'jakarta.validation:jakarta.validation-api:3.1.1',
]
junit = [
junit: 'org.junit.jupiter:junit-jupiter:5.11.4',
dataprovider: 'com.tngtech.junit.dataprovider:junit-jupiter-dataprovider:2.10',
jsonassert: 'org.skyscreamer:jsonassert:1.5.3',
assertj: 'org.assertj:assertj-core:3.27.3'
]
mockito = [
inline: 'org.mockito:mockito-inline:5.2.0',
junit: 'org.mockito:mockito-junit-jupiter:5.16.1',
]
failsafe = [
failsafe: 'dev.failsafe:failsafe:3.3.2',
]
spotify = [
completableFutures: "com.spotify:completable-futures:0.3.6"
]
scmProjectName = rootProject.name
scmRepo = 'github.com'
scmProjectPath = "commercetools/commercetools-sdk-java-v2.git" // github relative path with .git extension
scmProjectUrl = "https://$scmRepo/$scmProjectPath" // just as web-page
scmHttpsUrl = "https://$scmRepo/$scmProjectPath" // common VCS read access
scmSshUrl = "git@$scmRepo:$scmProjectPath" // developers VCS read-write repo
SNAPSHOT_SUFFIX = "-SNAPSHOT"
versionWIP = "development$SNAPSHOT_SUFFIX"
}