-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathbuild.gradle
More file actions
63 lines (49 loc) · 1.87 KB
/
Copy pathbuild.gradle
File metadata and controls
63 lines (49 loc) · 1.87 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
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
buildscript {
repositories {
mavenCentral()
}
}
plugins {
// Here we define all plugins that are used by subprojects and specify the version for external ones
id 'idea'
id 'maven'
id 'maven-publish'
id 'java'
id 'java-library' // needed to make sure that transitive deps have 'compile' scope
id 'com.softeq.gradle.itest' version '1.0.4'
}
ext {
versions = [
commercetools: "14.5.0",
slf4j: "1.7.36",
logback: "1.2.10",
]
}
allprojects {
apply plugin: 'java'
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
repositories {
mavenCentral()
maven {
url "https://packages.atlassian.com/maven-3rdparty"
}
}
dependencies {
implementation "com.commercetools.sdk:commercetools-http-client:${versions.commercetools}"
implementation "com.commercetools.sdk:commercetools-sdk-java-api:${versions.commercetools}"
implementation "com.commercetools.sdk:commercetools-graphql-api:${versions.commercetools}"
implementation "com.commercetools.sdk:commercetools-sdk-java-importapi:${versions.commercetools}"
implementation "com.commercetools.sdk:commercetools-sdk-java-ml:${versions.commercetools}"
implementation "org.slf4j:slf4j-api:${versions.slf4j}"
implementation "ch.qos.logback:logback-classic:${versions.logback}"
// implementation group: 'org.slf4j', name: 'slf4j-log4j12', version: '2.0.0-alpha0'
// Sync Library + old jvm sdk v1
// implementation 'com.commercetools:commercetools-sync-java:1.9.1'
// implementation 'com.commercetools.sdk.jvm.core:commercetools-models:1.53.0'
// implementation 'com.commercetools.sdk.jvm.core:commercetools-java-client:1.53.0'
implementation group: 'org.json', name: 'json', version: '20200518'
implementation 'javax.json:javax.json-api:1.1.4'
implementation 'org.glassfish:javax.json:1.1.4'
}