-
Notifications
You must be signed in to change notification settings - Fork 37
/
build.gradle
61 lines (58 loc) · 2.89 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
plugins {
id 'org.ajoberstar.git-publish' version '4.2.2'
id 'com.adarshr.test-logger' version '4.0.0'
id 'org.ajoberstar.grgit' version '5.2.2'
id "com.github.ben-manes.versions" version '0.51.0'
id 'ru.vyarus.mkdocs' version '3.0.0'
id "com.github.spotbugs" version "6.0.9"
id 'com.diffplug.spotless' version '6.25.0'
id 'io.github.gradle-nexus.publish-plugin' version '2.0.0'
}
ext{
commercetoolsJavaSdkV2Version = '17.18.0'
mockitoJunitJupiterVersion = '5.14.2'
jupiterApiVersion = '5.11.3'
assertjVersion = '3.26.3'
pmdVersion = '7.7.0'
jacocoVersion = '0.8.12'
caffeineVersion = '3.1.8'
nexusStagingPluginVersion = '0.22.0'
commonTextVersion = '1.12.0'
}
apply from: "$rootDir/gradle-scripts/repositories.gradle"
apply from: "$rootDir/gradle-scripts/plugins.gradle"
apply from: "$rootDir/gradle-scripts/extensions.gradle"
apply from: "$rootDir/gradle-scripts/project-info.gradle"
apply from: "$rootDir/gradle-scripts/package.gradle"
apply from: "$rootDir/gradle-scripts/java-compile.gradle"
apply from: "$rootDir/gradle-scripts/integration-tests.gradle"
apply from: "$rootDir/gradle-scripts/test.gradle"
apply from: "$rootDir/gradle-scripts/benchmark.gradle"
apply from: "$rootDir/gradle-scripts/test-logger.gradle"
apply from: "$rootDir/gradle-scripts/pmd.gradle"
apply from: "$rootDir/gradle-scripts/jacoco.gradle"
apply from: "$rootDir/gradle-scripts/spotbugs.gradle"
apply from: "$rootDir/gradle-scripts/maven-publish.gradle"
apply from: "$rootDir/gradle-scripts/nexus-publish.gradle"
apply from: "$rootDir/gradle-scripts/javadocs-publish.gradle"
apply from: "$rootDir/gradle-scripts/set-library-version.gradle"
apply from: "$rootDir/gradle-scripts/execution-order.gradle"
apply from: "$rootDir/gradle-scripts/mkdocs.gradle"
apply from: "$rootDir/gradle-scripts/spotless.gradle"
dependencies {
implementation "com.commercetools.sdk:commercetools-http-client:${commercetoolsJavaSdkV2Version}"
implementation "com.github.ben-manes.caffeine:caffeine:${caffeineVersion}"
implementation "org.apache.commons:commons-text:${commonTextVersion}"
api "com.commercetools.sdk:commercetools-sdk-java-api:${commercetoolsJavaSdkV2Version}"
api 'commons-io:commons-io:2.16.1'
api 'commons-codec:commons-codec:1.16.1'
api 'com.google.code.findbugs:annotations:3.0.1'
api 'com.neovisionaries:nv-i18n:1.29'
testImplementation "org.mockito:mockito-junit-jupiter:${mockitoJunitJupiterVersion}"
testImplementation "org.junit.jupiter:junit-jupiter-api:${jupiterApiVersion}"
testImplementation "org.junit.jupiter:junit-jupiter-params:${jupiterApiVersion}"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${jupiterApiVersion}"
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:${jupiterApiVersion}"
testImplementation "org.assertj:assertj-core:${assertjVersion}"
testImplementation 'com.github.spotbugs:spotbugs-annotations:4.8.4'
}