forked from paypal/mirakl-hyperwallet-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
145 lines (118 loc) · 2.97 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
buildscript {
repositories {
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath 'io.spring.javaformat:spring-javaformat-gradle-plugin:0.0.31'
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.5.1'
classpath "com.palantir.gradle.gitversion:gradle-git-version:0.12.3"
classpath "io.spring.gradle:dependency-management-plugin:1.0.10.RELEASE"
}
}
plugins {
id 'java-library'
id 'org.springframework.boot' version "${springBoot}"
id 'io.spring.dependency-management' version "${dependencyManagement}"
id 'org.sonarqube' version '3.0'
id 'checkstyle'
}
repositories {
mavenCentral()
}
allprojects {
group = 'com.paypal'
version = projectVersion
}
subprojects {
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'java-library'
apply plugin: 'java'
apply plugin: 'io.spring.javaformat'
apply plugin: 'jacoco'
apply plugin: 'checkstyle'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(15)
}
}
ext {
set('springCloudVersion', "2021.0.5")
}
repositories {
mavenCentral()
maven {
credentials {
username "$System.env.PAYPAL_MIRAKL_SDK_USER"
password "$System.env.PAYPAL_MIRAKL_SDK_PASSWORD"
}
url "https://artifactory.mirakl.net/artifactory/mirakl-ext-repo/"
}
}
task noParallelTest(type: Test) {
group = 'verification'
description = "Runs tests that can't be ran in parallel."
maxParallelForks = 1
useJUnitPlatform {
includeTags("noParallel")
}
}
noParallelTest.mustRunAfter('test')
test {
maxParallelForks = Runtime.runtime.availableProcessors()
useJUnitPlatform {
excludeTags("noParallel")
}
}
dependencyManagement {
overriddenByDependencies = false
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
}
dependencies {
dependency 'com.github.ben-manes.caffeine:caffeine:3.1.0'
dependency 'org.awaitility:awaitility:4.2.0'
}
}
compileJava {
dependsOn format
}
jacoco {
toolVersion = "0.8.6"
reportsDirectory = file("$buildDir/reports/jacoco") // Default value
}
jacocoTestReport {
dependsOn test
reports {
xml.enabled true
csv.enabled false
html.enabled true
}
}
checkstyle {
toolVersion = "8.45.1"
configDirectory = file("${rootDir}/src/config/checkstyle")
checkstyleTest.enabled = false
}
bootBuildImage {
environment =
environment = ["BP_JVM_VERSION" : "17",
"BPE_DELIM_JAVA_TOOL_OPTIONS" : " ",
"BPE_APPEND_JAVA_TOOL_OPTIONS": "-Xms256m -Xmx2g -XX:MaxDirectMemorySize=200m -Dfile.encoding=UTF8"]
}
springBoot {
buildInfo()
}
}
bootJar {
enabled = false
}
apply from: 'gradle/sonarqube.gradle'
apply from: 'gradle/dockerCompose.gradle'
File file = new File("internal-gradle-tasks/createBuild.gradle")
if (file.exists()) {
apply from: 'internal-gradle-tasks/createBuild.gradle'
}