-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathbuild.gradle
More file actions
26 lines (22 loc) · 1.16 KB
/
build.gradle
File metadata and controls
26 lines (22 loc) · 1.16 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
dependencies {
implementation project(":commercetools:commercetools-sdk-java-api")
implementation project(":commercetools:commercetools-sdk-java-importapi")
implementation project(":commercetools:commercetools-sdk-java-history")
implementation project(":commercetools:commercetools-http-client")
implementation project(":commercetools:commercetools-okhttp-client4")
implementation project(":commercetools:commercetools-apachehttp-client")
implementation project(":commercetools:commercetools-reactornetty-client")
implementation project(":commercetools:commercetools-sdk-compat-v1")
implementation project(":commercetools:commercetools-graphql-api")
implementation project(":commercetools:commercetools-monitoring-newrelic")
implementation project(":commercetools:commercetools-monitoring-datadog")
testImplementation ctsdkv1.client version ctsdkv1.version
implementation ctsdkv1.models version ctsdkv1.version
testImplementation project(":commercetools:commercetools-javanet-client")
testImplementation commons.io version commons.io_version
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}