-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathbuild.gradle
More file actions
62 lines (59 loc) · 2.98 KB
/
build.gradle
File metadata and controls
62 lines (59 loc) · 2.98 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
plugins {
id 'com.adarshr.test-logger' version '4.0.0'
id 'org.ajoberstar.grgit' version '5.3.0'
id "com.github.ben-manes.versions" version '0.52.0'
id 'ru.vyarus.mkdocs' version '4.0.1' apply false
id "com.github.spotbugs" version "6.1.12"
id 'com.diffplug.spotless' version '7.0.3'
id 'io.github.gradle-nexus.publish-plugin' version '2.0.0'
}
ext{
commercetoolsJavaSdkV2Version = '19.3.0'
mockitoJunitJupiterVersion = '5.20.0'
jupiterApiVersion = '5.14.1'
jupiterPlatformVersion = '1.14.1'
assertjVersion = '3.27.3'
pmdVersion = '7.13.0'
jacocoVersion = '0.8.13'
caffeineVersion = '3.2.0'
nexusStagingPluginVersion = '0.22.0'
commonTextVersion = '1.13.1'
}
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/set-library-version.gradle"
apply from: "$rootDir/gradle-scripts/mkdocs.gradle"
apply from: "$rootDir/gradle-scripts/javadocs-publish.gradle"
apply from: "$rootDir/gradle-scripts/spotless.gradle"
apply from: "$rootDir/gradle-scripts/execution-order.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.19.0'
api 'commons-codec:commons-codec:1.18.0'
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}"
testRuntimeOnly "org.junit.platform:junit-platform-launcher:${jupiterPlatformVersion}"
testImplementation "org.assertj:assertj-core:${assertjVersion}"
testImplementation 'com.github.spotbugs:spotbugs-annotations:4.9.3'
}